Subversion Repositories XServices

Rev

Rev 201 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 201 Rev 203
Line 7... Line 7...
7
import javax.xml.bind.annotation.XmlAccessType;
7
import javax.xml.bind.annotation.XmlAccessType;
8
import javax.xml.bind.annotation.XmlAccessorType;
8
import javax.xml.bind.annotation.XmlAccessorType;
9
import javax.xml.bind.annotation.XmlAnyAttribute;
9
import javax.xml.bind.annotation.XmlAnyAttribute;
10
import javax.xml.bind.annotation.XmlAnyElement;
10
import javax.xml.bind.annotation.XmlAnyElement;
11
import javax.xml.bind.annotation.XmlType;
11
import javax.xml.bind.annotation.XmlElement;
-
 
12
import javax.xml.bind.annotation.XmlType;
12
import javax.xml.namespace.QName;
13
import javax.xml.namespace.QName;
13
import org.w3c.dom.Element;
14
import org.w3c.dom.Element;
14
 
15
 
Line 15... Line 16...
15
 
16
 
16
/**
17
/**
17
 * 
18
 * 
-
 
19
 *                 A structure to hold security
18
 *                 A structure to hold security authentication-relevant data.
20
 *                 authentication-relevant data. If present the
19
 *                 If present the data within may be encrypted.
21
 *                 data within may be encrypted.
20
 *             
22
 *             
21
 * 
23
 * 
22
 * <p>Java-Klasse für CredentialsType complex type.
24
 * <p>Java-Klasse für CredentialsType complex type.
23
 * 
25
 * 
Line 27... Line 29...
27
 * &lt;complexType name="CredentialsType">
29
 * &lt;complexType name="CredentialsType">
28
 *   &lt;complexContent>
30
 *   &lt;complexContent>
29
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
31
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30
 *       &lt;sequence>
32
 *       &lt;sequence>
31
 *         &lt;any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
33
 *         &lt;element name="ALFSecurity" type="{http://www.eclipse.org/alf/schema/EventBase/1}ALFSecurityType" minOccurs="0"/>
-
 
34
 *         &lt;any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
32
 *       &lt;/sequence>
35
 *       &lt;/sequence>
33
 *       &lt;anyAttribute/>
36
 *       &lt;anyAttribute/>
34
 *     &lt;/restriction>
37
 *     &lt;/restriction>
35
 *   &lt;/complexContent>
38
 *   &lt;/complexContent>
36
 * &lt;/complexType>
39
 * &lt;/complexType>
37
 * </pre>
40
 * </pre>
Line 39... Line 42...
39
 * 
42
 * 
40
 */
43
 */
41
@XmlAccessorType(XmlAccessType.FIELD)
44
@XmlAccessorType(XmlAccessType.FIELD)
42
@XmlType(name = "CredentialsType", namespace = "http://www.eclipse.org/alf/schema/EventBase/1", propOrder = {
45
@XmlType(name = "CredentialsType", namespace = "http://www.eclipse.org/alf/schema/EventBase/1", propOrder = {
43
    "any"
46
    "alfSecurity",
-
 
47
    "any"
44
})
48
})
45
public class CredentialsType {
49
public class CredentialsType {
46
 
50
 
Line -... Line 51...
-
 
51
    @XmlElement(name = "ALFSecurity", namespace = "http://www.eclipse.org/alf/schema/EventBase/1")
-
 
52
    protected ALFSecurityType alfSecurity;
47
    @XmlAnyElement(lax = true)
53
    @XmlAnyElement(lax = true)
48
    protected List<Object> any;
54
    protected List<Object> any;
49
    @XmlAnyAttribute
55
    @XmlAnyAttribute
50
    private Map<QName, String> otherAttributes = new HashMap<QName, String>();
56
    private Map<QName, String> otherAttributes = new HashMap<QName, String>();
Line 51... Line 57...
51
 
57
 
-
 
58
    /**
-
 
59
     * Ruft den Wert der alfSecurity-Eigenschaft ab.
-
 
60
     * 
-
 
61
     * @return
-
 
62
     *     possible object is
-
 
63
     *     {@link ALFSecurityType }
-
 
64
     *     
-
 
65
     */
-
 
66
    public ALFSecurityType getALFSecurity() {
-
 
67
        return alfSecurity;
-
 
68
    }
-
 
69
 
-
 
70
    /**
-
 
71
     * Legt den Wert der alfSecurity-Eigenschaft fest.
-
 
72
     * 
-
 
73
     * @param value
-
 
74
     *     allowed object is
-
 
75
     *     {@link ALFSecurityType }
-
 
76
     *     
-
 
77
     */
-
 
78
    public void setALFSecurity(ALFSecurityType value) {
-
 
79
        this.alfSecurity = value;
-
 
80
    }
-
 
81
 
52
    /**
82
    /**
53
     * Gets the value of the any property.
83
     * Gets the value of the any property.
54
     * 
84
     * 
55
     * <p>
85
     * <p>
56
     * This accessor method returns a reference to the live list,
86
     * This accessor method returns a reference to the live list,
Line 66... Line 96...
66
     * 
96
     * 
67
     * 
97
     * 
68
     * <p>
98
     * <p>
69
     * Objects of the following type(s) are allowed in the list
99
     * Objects of the following type(s) are allowed in the list
70
     * {@link Object }
100
     * {@link Element }
71
     * {@link Element }
-
 
72
     * 
101
     * {@link Object }
-
 
102
     * 
73
     * 
103
     * 
74
     */
104
     */
75
    public List<Object> getAny() {
105
    public List<Object> getAny() {
76
        if (any == null) {
106
        if (any == null) {
77
            any = new ArrayList<Object>();
107
            any = new ArrayList<Object>();