OW2 Consortium aspire

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
975 nkef 1
 
2
3
 
4
import javax.xml.bind.annotation.XmlAccessorType;
5
import javax.xml.bind.annotation.XmlElement;
6
import javax.xml.bind.annotation.XmlType;
7
8
 
9
 
10
 * <p>Java class for ImplementationException complex type.
11
 *
12
 * <p>The following schema fragment specifies the expected content contained within this class.
13
 *
14
 * <pre>
15
 * &lt;complexType name="ImplementationException">
16
 *   &lt;complexContent>
17
 *     &lt;extension base="{urn:epcglobal:ale:wsdl:1}ALEException">
18
 *       &lt;sequence>
19
 *         &lt;element name="severity" type="{urn:epcglobal:ale:wsdl:1}ImplementationExceptionSeverity"/>
20
 *       &lt;/sequence>
21
 *     &lt;/extension>
22
 *   &lt;/complexContent>
23
 * &lt;/complexType>
24
 * </pre>
25
 *
26
 *
27
 */
28
@XmlAccessorType(XmlAccessType.FIELD)
29
@XmlType(name = "ImplementationException", propOrder = {
30
    "severity"
31
})
32
public class ImplementationException
33
    extends ALEException
34
{
35
36
 
37
    protected String severity;
38
39
 
40
     * Gets the value of the severity property.
41
     *
42
     * @return
43
     *     possible object is
44
     *     {@link String }
45
     *
46
     */
47
    public String getSeverity() {
48
        return severity;
49
    }
50
51
 
52
     * Sets the value of the severity property.
53
     *
54
     * @param value
55
     *     allowed object is
56
     *     {@link String }
57
     *
58
     */
59
    public void setSeverity(String value) {
60
        this.severity = value;
61
    }
62
63
 
64