1
2
3
4
5
6
7
8
9 package org.jomc.modlet;
10
11 import javax.xml.bind.JAXBElement;
12 import javax.xml.bind.annotation.XmlElementDecl;
13 import javax.xml.bind.annotation.XmlRegistry;
14 import javax.xml.namespace.QName;
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31 @XmlRegistry
32 public class ObjectFactory {
33
34 private final static QName _Service_QNAME = new QName("http://jomc.org/modlet", "service");
35 private final static QName _Schema_QNAME = new QName("http://jomc.org/modlet", "schema");
36 private final static QName _Model_QNAME = new QName("http://jomc.org/modlet", "model");
37 private final static QName _Schemas_QNAME = new QName("http://jomc.org/modlet", "schemas");
38 private final static QName _Services_QNAME = new QName("http://jomc.org/modlet", "services");
39 private final static QName _Modlets_QNAME = new QName("http://jomc.org/modlet", "modlets");
40 private final static QName _Modlet_QNAME = new QName("http://jomc.org/modlet", "modlet");
41
42
43
44
45
46 public ObjectFactory() {
47 }
48
49
50
51
52
53 public Schema createSchema() {
54 return new Schema();
55 }
56
57
58
59
60
61 public Service createService() {
62 return new Service();
63 }
64
65
66
67
68
69 public Services createServices() {
70 return new Services();
71 }
72
73
74
75
76
77 public Modlets createModlets() {
78 return new Modlets();
79 }
80
81
82
83
84
85 public Modlet createModlet() {
86 return new Modlet();
87 }
88
89
90
91
92
93 public Model createModel() {
94 return new Model();
95 }
96
97
98
99
100
101 public ModletObject createModletObject() {
102 return new ModletObject();
103 }
104
105
106
107
108
109 public Property createProperty() {
110 return new Property();
111 }
112
113
114
115
116
117 public Schemas createSchemas() {
118 return new Schemas();
119 }
120
121
122
123
124
125 @XmlElementDecl(namespace = "http://jomc.org/modlet", name = "service")
126 public JAXBElement<Service> createService(Service value) {
127 return new JAXBElement<Service>(_Service_QNAME, Service.class, null, value);
128 }
129
130
131
132
133
134 @XmlElementDecl(namespace = "http://jomc.org/modlet", name = "schema")
135 public JAXBElement<Schema> createSchema(Schema value) {
136 return new JAXBElement<Schema>(_Schema_QNAME, Schema.class, null, value);
137 }
138
139
140
141
142
143 @XmlElementDecl(namespace = "http://jomc.org/modlet", name = "model")
144 public JAXBElement<Model> createModel(Model value) {
145 return new JAXBElement<Model>(_Model_QNAME, Model.class, null, value);
146 }
147
148
149
150
151
152 @XmlElementDecl(namespace = "http://jomc.org/modlet", name = "schemas")
153 public JAXBElement<Schemas> createSchemas(Schemas value) {
154 return new JAXBElement<Schemas>(_Schemas_QNAME, Schemas.class, null, value);
155 }
156
157
158
159
160
161 @XmlElementDecl(namespace = "http://jomc.org/modlet", name = "services")
162 public JAXBElement<Services> createServices(Services value) {
163 return new JAXBElement<Services>(_Services_QNAME, Services.class, null, value);
164 }
165
166
167
168
169
170 @XmlElementDecl(namespace = "http://jomc.org/modlet", name = "modlets")
171 public JAXBElement<Modlets> createModlets(Modlets value) {
172 return new JAXBElement<Modlets>(_Modlets_QNAME, Modlets.class, null, value);
173 }
174
175
176
177
178
179 @XmlElementDecl(namespace = "http://jomc.org/modlet", name = "modlet")
180 public JAXBElement<Modlet> createModlet(Modlet value) {
181 return new JAXBElement<Modlet>(_Modlet_QNAME, Modlet.class, null, value);
182 }
183
184 }