001: /*
002: * XML Type: dataSourceMapDef
003: * Namespace: http://cbesb.bostechcorp.com/etl/dataSourceMap/1.0
004: * Java type: com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef
005: *
006: * Automatically generated - do not modify.
007: */
008: package com.bostechcorp.cbesb.etl.dataSourceMap.x10;
009:
010: /**
011: * An XML dataSourceMapDef(@http://cbesb.bostechcorp.com/etl/dataSourceMap/1.0).
012: *
013: * This is a complex type.
014: */
015: public interface DataSourceMapDef extends org.apache.xmlbeans.XmlObject {
016: public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) schema.system.s5510FE91037BC1DD5EBCB28481B5B217.TypeSystemHolder.typeSystem
017: .resolveHandle("datasourcemapdefe451type");
018:
019: /**
020: * Gets the "name" element
021: */
022: java.lang.String getName();
023:
024: /**
025: * Gets (as xml) the "name" element
026: */
027: org.apache.xmlbeans.XmlString xgetName();
028:
029: /**
030: * Sets the "name" element
031: */
032: void setName(java.lang.String name);
033:
034: /**
035: * Sets (as xml) the "name" element
036: */
037: void xsetName(org.apache.xmlbeans.XmlString name);
038:
039: /**
040: * Gets the "connection" element
041: */
042: java.lang.String getConnection();
043:
044: /**
045: * Gets (as xml) the "connection" element
046: */
047: org.apache.xmlbeans.XmlString xgetConnection();
048:
049: /**
050: * Sets the "connection" element
051: */
052: void setConnection(java.lang.String connection);
053:
054: /**
055: * Sets (as xml) the "connection" element
056: */
057: void xsetConnection(org.apache.xmlbeans.XmlString connection);
058:
059: /**
060: * Gets the "databaseDef" element
061: */
062: java.lang.String getDatabaseDef();
063:
064: /**
065: * Gets (as xml) the "databaseDef" element
066: */
067: org.apache.xmlbeans.XmlString xgetDatabaseDef();
068:
069: /**
070: * Sets the "databaseDef" element
071: */
072: void setDatabaseDef(java.lang.String databaseDef);
073:
074: /**
075: * Sets (as xml) the "databaseDef" element
076: */
077: void xsetDatabaseDef(org.apache.xmlbeans.XmlString databaseDef);
078:
079: /**
080: * Gets the "message" element
081: */
082: com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef getMessage();
083:
084: /**
085: * Sets the "message" element
086: */
087: void setMessage(
088: com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef message);
089:
090: /**
091: * Appends and returns a new empty "message" element
092: */
093: com.bostechcorp.cbesb.etl.dataSourceMap.x10.MessageDef addNewMessage();
094:
095: /**
096: * Gets the "whereClause" element
097: */
098: com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef getWhereClause();
099:
100: /**
101: * Sets the "whereClause" element
102: */
103: void setWhereClause(
104: com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef whereClause);
105:
106: /**
107: * Appends and returns a new empty "whereClause" element
108: */
109: com.bostechcorp.cbesb.etl.dataSourceMap.x10.WhereClauseDef addNewWhereClause();
110:
111: /**
112: * A factory class with static methods for creating instances
113: * of this type.
114: */
115:
116: public static final class Factory {
117: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef newInstance() {
118: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef) org.apache.xmlbeans.XmlBeans
119: .getContextTypeLoader().newInstance(type, null);
120: }
121:
122: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef newInstance(
123: org.apache.xmlbeans.XmlOptions options) {
124: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef) org.apache.xmlbeans.XmlBeans
125: .getContextTypeLoader().newInstance(type, options);
126: }
127:
128: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef parse(
129: java.lang.String s)
130: throws org.apache.xmlbeans.XmlException {
131: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef) org.apache.xmlbeans.XmlBeans
132: .getContextTypeLoader().parse(s, type, null);
133: }
134:
135: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef parse(
136: java.lang.String s,
137: org.apache.xmlbeans.XmlOptions options)
138: throws org.apache.xmlbeans.XmlException {
139: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef) org.apache.xmlbeans.XmlBeans
140: .getContextTypeLoader().parse(s, type, options);
141: }
142:
143: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef parse(
144: java.io.File f)
145: throws org.apache.xmlbeans.XmlException,
146: java.io.IOException {
147: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef) org.apache.xmlbeans.XmlBeans
148: .getContextTypeLoader().parse(f, type, null);
149: }
150:
151: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef parse(
152: java.io.File f, org.apache.xmlbeans.XmlOptions options)
153: throws org.apache.xmlbeans.XmlException,
154: java.io.IOException {
155: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef) org.apache.xmlbeans.XmlBeans
156: .getContextTypeLoader().parse(f, type, options);
157: }
158:
159: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef parse(
160: java.net.URL u)
161: throws org.apache.xmlbeans.XmlException,
162: java.io.IOException {
163: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef) org.apache.xmlbeans.XmlBeans
164: .getContextTypeLoader().parse(u, type, null);
165: }
166:
167: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef parse(
168: java.net.URL u, org.apache.xmlbeans.XmlOptions options)
169: throws org.apache.xmlbeans.XmlException,
170: java.io.IOException {
171: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef) org.apache.xmlbeans.XmlBeans
172: .getContextTypeLoader().parse(u, type, options);
173: }
174:
175: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef parse(
176: java.io.InputStream is)
177: throws org.apache.xmlbeans.XmlException,
178: java.io.IOException {
179: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef) org.apache.xmlbeans.XmlBeans
180: .getContextTypeLoader().parse(is, type, null);
181: }
182:
183: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef parse(
184: java.io.InputStream is,
185: org.apache.xmlbeans.XmlOptions options)
186: throws org.apache.xmlbeans.XmlException,
187: java.io.IOException {
188: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef) org.apache.xmlbeans.XmlBeans
189: .getContextTypeLoader().parse(is, type, options);
190: }
191:
192: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef parse(
193: java.io.Reader r)
194: throws org.apache.xmlbeans.XmlException,
195: java.io.IOException {
196: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef) org.apache.xmlbeans.XmlBeans
197: .getContextTypeLoader().parse(r, type, null);
198: }
199:
200: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef parse(
201: java.io.Reader r, org.apache.xmlbeans.XmlOptions options)
202: throws org.apache.xmlbeans.XmlException,
203: java.io.IOException {
204: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef) org.apache.xmlbeans.XmlBeans
205: .getContextTypeLoader().parse(r, type, options);
206: }
207:
208: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef parse(
209: org.w3c.dom.Node node)
210: throws org.apache.xmlbeans.XmlException {
211: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef) org.apache.xmlbeans.XmlBeans
212: .getContextTypeLoader().parse(node, type, null);
213: }
214:
215: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef parse(
216: org.w3c.dom.Node node,
217: org.apache.xmlbeans.XmlOptions options)
218: throws org.apache.xmlbeans.XmlException {
219: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef) org.apache.xmlbeans.XmlBeans
220: .getContextTypeLoader().parse(node, type, options);
221: }
222:
223: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef parse(
224: org.apache.xmlbeans.xml.stream.XMLInputStream xis)
225: throws org.apache.xmlbeans.XmlException,
226: org.apache.xmlbeans.xml.stream.XMLStreamException {
227: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef) org.apache.xmlbeans.XmlBeans
228: .getContextTypeLoader().parse(xis, type, null);
229: }
230:
231: public static com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef parse(
232: org.apache.xmlbeans.xml.stream.XMLInputStream xis,
233: org.apache.xmlbeans.XmlOptions options)
234: throws org.apache.xmlbeans.XmlException,
235: org.apache.xmlbeans.xml.stream.XMLStreamException {
236: return (com.bostechcorp.cbesb.etl.dataSourceMap.x10.DataSourceMapDef) org.apache.xmlbeans.XmlBeans
237: .getContextTypeLoader().parse(xis, type, options);
238: }
239:
240: public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
241: org.apache.xmlbeans.xml.stream.XMLInputStream xis)
242: throws org.apache.xmlbeans.XmlException,
243: org.apache.xmlbeans.xml.stream.XMLStreamException {
244: return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
245: .newValidatingXMLInputStream(xis, type, null);
246: }
247:
248: public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
249: org.apache.xmlbeans.xml.stream.XMLInputStream xis,
250: org.apache.xmlbeans.XmlOptions options)
251: throws org.apache.xmlbeans.XmlException,
252: org.apache.xmlbeans.xml.stream.XMLStreamException {
253: return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
254: .newValidatingXMLInputStream(xis, type, options);
255: }
256:
257: private Factory() {
258: } // No instance of this class allowed
259: }
260: }
|