Subversion Repositories XServices

Rev

Rev 201 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
201 brianR 1
 
2
3
 
4
import javax.xml.bind.annotation.XmlElementDecl;
5
import javax.xml.bind.annotation.XmlRegistry;
6
import javax.xml.namespace.QName;
7
8
 
9
 
10
 * This object contains factory methods for each
11
 * Java content interface and Java element interface
12
 * generated in the net.brutex.xservices.types.alfevent package.
13
 * <p>An ObjectFactory allows you to programatically
14
 * construct new instances of the Java representation
15
 * for XML content. The Java representation of XML
16
 * content can consist of schema derived interfaces
17
 * and classes representing the binding of schema
18
 * type definitions, element declarations and model
19
 * groups.  Factory methods for each of these are
20
 * provided in this class.
21
 *
22
 */
23
@XmlRegistry
24
public class ObjectFactory {
25
26
 
203 brianR 27
201 brianR 28
 
29
     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: net.brutex.xservices.types.alfevent
30
     *
31
     */
32
    public ObjectFactory() {
33
    }
34
35
 
36
     * Create an instance of {@link ALFSecurityType }
203 brianR 37
     *
38
     */
39
    public ALFSecurityType createALFSecurityType() {
40
        return new ALFSecurityType();
41
    }
42
43
 
44
     * Create an instance of {@link ALFEventType }
201 brianR 45
     *
46
     */
47
    public ALFEventType createALFEventType() {
48
        return new ALFEventType();
49
    }
50
51
 
52
     * Create an instance of {@link DetailExtensionType }
53
     *
54
     */
55
    public DetailExtensionType createDetailExtensionType() {
56
        return new DetailExtensionType();
57
    }
58
59
 
60
     * Create an instance of {@link CustomExtensionType }
61
     *
62
     */
63
    public CustomExtensionType createCustomExtensionType() {
64
        return new CustomExtensionType();
65
    }
66
67
 
68
     * Create an instance of {@link CredentialsType }
69
     *
70
     */
71
    public CredentialsType createCredentialsType() {
72
        return new CredentialsType();
73
    }
74
75
 
76
     * Create an instance of {@link SourceType }
77
     *
78
     */
79
    public SourceType createSourceType() {
80
        return new SourceType();
81
    }
82
83
 
84
     * Create an instance of {@link BaseExtensionType }
85
     *
86
     */
87
    public BaseExtensionType createBaseExtensionType() {
88
        return new BaseExtensionType();
89
    }
90
91
 
92
     * Create an instance of {@link EmExtensionType }
93
     *
94
     */
95
    public EmExtensionType createEmExtensionType() {
96
        return new EmExtensionType();
97
    }
98
99
 
100
     * Create an instance of {@link ALFEventWithReplyResponseType }
101
     *
102
     */
103
    public ALFEventWithReplyResponseType createALFEventWithReplyResponseType() {
104
        return new ALFEventWithReplyResponseType();
105
    }
106
107
 
108
     * Create an instance of {@link EventBaseType }
109
     *
110
     */
111
    public EventBaseType createEventBaseType() {
112
        return new EventBaseType();
113
    }
114
115
 
116
     * Create an instance of {@link ALFEventResponseType }
117
     *
118
     */
119
    public ALFEventResponseType createALFEventResponseType() {
120
        return new ALFEventResponseType();
121
    }
122
123
 
124
     * Create an instance of {@link EmBaseType }
125
     *
126
     */
127
    public EmBaseType createEmBaseType() {
128
        return new EmBaseType();
129
    }
130
131
 
132
     * Create an instance of {@link ALFSecurityType.UsernameToken }
203 brianR 133
     *
134
     */
135
    public ALFSecurityType.UsernameToken createALFSecurityTypeUsernameToken() {
136
        return new ALFSecurityType.UsernameToken();
137
    }
138
139
 
140
     * Create an instance of {@link JAXBElement }{@code <}{@link ALFEventType }{@code >}}
201 brianR 141
     *
142
     */
143
    @XmlElementDecl(namespace = "http://www.eclipse.org/alf/schema/EventBase/1", name = "ALFEventNoticeDoc")
203 brianR 144
    public JAXBElement<ALFEventType> createALFEventNoticeDoc(ALFEventType value) {
145
        return new JAXBElement<ALFEventType>(_ALFEventNoticeDoc_QNAME, ALFEventType.class, null, value);
146
    }
201 brianR 147
148
 
149