-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathObjectFactory.java
More file actions
196 lines (169 loc) · 5.02 KB
/
ObjectFactory.java
File metadata and controls
196 lines (169 loc) · 5.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-147
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.09.25 at 08:37:51 PM EDT
//
package org.restsql.core.sqlresource;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the org.restsql.core.sqlresource package.
* <p>An ObjectFactory allows you to programatically
* construct new instances of the Java representation
* for XML content. The Java representation of XML
* content can consist of schema derived interfaces
* and classes representing the binding of schema
* type definitions, element declarations and model
* groups. Factory methods for each of these are
* provided in this class.
*
*/
@XmlRegistry
public class ObjectFactory {
private final static QName _SqlResource_QNAME = new QName("http://restsql.org/schema", "sqlResource");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.restsql.core.sqlresource
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link DocumentationDescription }
*
*/
public DocumentationDescription createDocumentationDescription() {
return new DocumentationDescription();
}
/**
* Create an instance of {@link DocumentationExamples }
*
*/
public DocumentationExamples createDocumentationExamples() {
return new DocumentationExamples();
}
/**
* Create an instance of {@link DocumentationColumns }
*
*/
public DocumentationColumns createDocumentationColumns() {
return new DocumentationColumns();
}
/**
* Create an instance of {@link HttpConfig }
*
*/
public HttpConfig createHttpConfig() {
return new HttpConfig();
}
/**
* Create an instance of {@link HttpResponse }
*
*/
public HttpResponse createHttpResponse() {
return new HttpResponse();
}
/**
* Create an instance of {@link Query }
*
*/
public Query createQuery() {
return new Query();
}
/**
* Create an instance of {@link DocumentationColumn }
*
*/
public DocumentationColumn createDocumentationColumn() {
return new DocumentationColumn();
}
/**
* Create an instance of {@link DocumentationResource }
*
*/
public DocumentationResource createDocumentationResource() {
return new DocumentationResource();
}
/**
* Create an instance of {@link Table }
*
*/
public Table createTable() {
return new Table();
}
/**
* Create an instance of {@link ValidatedAttribute }
*
*/
public ValidatedAttribute createValidatedAttribute() {
return new ValidatedAttribute();
}
/**
* Create an instance of {@link DocumentationExample }
*
*/
public DocumentationExample createDocumentationExample() {
return new DocumentationExample();
}
/**
* Create an instance of {@link Database }
*
*/
public Database createDatabase() {
return new Database();
}
/**
* Create an instance of {@link DocumentationRequest }
*
*/
public DocumentationRequest createDocumentationRequest() {
return new DocumentationRequest();
}
/**
* Create an instance of {@link DocumentationHeader }
*
*/
public DocumentationHeader createDocumentationHeader() {
return new DocumentationHeader();
}
/**
* Create an instance of {@link SqlResourceDefinition }
*
*/
public SqlResourceDefinition createSqlResourceDefinition() {
return new SqlResourceDefinition();
}
/**
* Create an instance of {@link MetaData }
*
*/
public MetaData createMetaData() {
return new MetaData();
}
/**
* Create an instance of {@link Documentation }
*
*/
public Documentation createDocumentation() {
return new Documentation();
}
/**
* Create an instance of {@link DocumentationResponse }
*
*/
public DocumentationResponse createDocumentationResponse() {
return new DocumentationResponse();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SqlResourceDefinition }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://restsql.org/schema", name = "sqlResource")
public JAXBElement<SqlResourceDefinition> createSqlResource(SqlResourceDefinition value) {
return new JAXBElement<SqlResourceDefinition>(_SqlResource_QNAME, SqlResourceDefinition.class, null, value);
}
}