Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* An XML document type.
* Localname: UpdateRequestResponse
* Namespace: http://www.opengis.net/sps/1.0
* Java type: net.opengis.sps.x10.UpdateRequestResponseDocument
*
* Automatically generated - do not modify.
*/
package net.opengis.sps.x10;
/**
* A document containing one UpdateRequestResponse(@http://www.opengis.net/sps/1.0) element.
*
* This is a complex type.
*/
public interface UpdateRequestResponseDocument extends org.apache.xmlbeans.XmlObject
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(UpdateRequestResponseDocument.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s017DC22ED83B027ECC9397C7ED15308E").resolveHandle("updaterequestresponse71aadoctype");
/**
* Gets the "UpdateRequestResponse" element
*/
net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse getUpdateRequestResponse();
/**
* Sets the "UpdateRequestResponse" element
*/
void setUpdateRequestResponse(net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse updateRequestResponse);
/**
* Appends and returns a new empty "UpdateRequestResponse" element
*/
net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse addNewUpdateRequestResponse();
/**
* An XML UpdateRequestResponse(@http://www.opengis.net/sps/1.0).
*
* This is a complex type.
*/
public interface UpdateRequestResponse extends org.apache.xmlbeans.XmlObject
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(UpdateRequestResponse.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s017DC22ED83B027ECC9397C7ED15308E").resolveHandle("updaterequestresponsefe17elemtype");
/**
* Gets the "taskID" element
*/
java.lang.String getTaskID();
/**
* Gets (as xml) the "taskID" element
*/
org.apache.xmlbeans.XmlToken xgetTaskID();
/**
* Sets the "taskID" element
*/
void setTaskID(java.lang.String taskID);
/**
* Sets (as xml) the "taskID" element
*/
void xsetTaskID(org.apache.xmlbeans.XmlToken taskID);
/**
* Gets the "status" element
*/
net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.Status.Enum getStatus();
/**
* Gets (as xml) the "status" element
*/
net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.Status xgetStatus();
/**
* Sets the "status" element
*/
void setStatus(net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.Status.Enum status);
/**
* Sets (as xml) the "status" element
*/
void xsetStatus(net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.Status status);
/**
* Gets the "description" element
*/
net.opengis.gml.StringOrRefType getDescription();
/**
* True if has "description" element
*/
boolean isSetDescription();
/**
* Sets the "description" element
*/
void setDescription(net.opengis.gml.StringOrRefType description);
/**
* Appends and returns a new empty "description" element
*/
net.opengis.gml.StringOrRefType addNewDescription();
/**
* Unsets the "description" element
*/
void unsetDescription();
/**
* Gets the "estimatedToC" element
*/
net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.EstimatedToC getEstimatedToC();
/**
* True if has "estimatedToC" element
*/
boolean isSetEstimatedToC();
/**
* Sets the "estimatedToC" element
*/
void setEstimatedToC(net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.EstimatedToC estimatedToC);
/**
* Appends and returns a new empty "estimatedToC" element
*/
net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.EstimatedToC addNewEstimatedToC();
/**
* Unsets the "estimatedToC" element
*/
void unsetEstimatedToC();
/**
* Gets array of all "missingParameters" elements
*/
net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.MissingParameters[] getMissingParametersArray();
/**
* Gets ith "missingParameters" element
*/
net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.MissingParameters getMissingParametersArray(int i);
/**
* Returns number of "missingParameters" element
*/
int sizeOfMissingParametersArray();
/**
* Sets array of all "missingParameters" element
*/
void setMissingParametersArray(net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.MissingParameters[] missingParametersArray);
/**
* Sets ith "missingParameters" element
*/
void setMissingParametersArray(int i, net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.MissingParameters missingParameters);
/**
* Inserts and returns a new empty value (as xml) as the ith "missingParameters" element
*/
net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.MissingParameters insertNewMissingParameters(int i);
/**
* Appends and returns a new empty value (as xml) as the last "missingParameters" element
*/
net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.MissingParameters addNewMissingParameters();
/**
* Removes the ith "missingParameters" element
*/
void removeMissingParameters(int i);
/**
* An XML status(@http://www.opengis.net/sps/1.0).
*
* This is an atomic type that is a restriction of net.opengis.sps.x10.UpdateRequestResponseDocument$UpdateRequestResponse$Status.
*/
public interface Status extends org.apache.xmlbeans.XmlString
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(Status.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s017DC22ED83B027ECC9397C7ED15308E").resolveHandle("statusb9c9elemtype");
org.apache.xmlbeans.StringEnumAbstractBase enumValue();
void set(org.apache.xmlbeans.StringEnumAbstractBase e);
static final Enum CONFIRMED = Enum.forString("confirmed");
static final Enum REJECTED = Enum.forString("rejected");
static final Enum REQUEST_INCOMPLETE = Enum.forString("request incomplete");
static final int INT_CONFIRMED = Enum.INT_CONFIRMED;
static final int INT_REJECTED = Enum.INT_REJECTED;
static final int INT_REQUEST_INCOMPLETE = Enum.INT_REQUEST_INCOMPLETE;
/**
* Enumeration value class for net.opengis.sps.x10.UpdateRequestResponseDocument$UpdateRequestResponse$Status.
* These enum values can be used as follows:
*
* enum.toString(); // returns the string value of the enum
* enum.intValue(); // returns an int value, useful for switches
* // e.g., case Enum.INT_CONFIRMED
* Enum.forString(s); // returns the enum value for a string
* Enum.forInt(i); // returns the enum value for an int
*
* Enumeration objects are immutable singleton objects that
* can be compared using == object equality. They have no
* public constructor. See the constants defined within this
* class for all the valid values.
*/
static final class Enum extends org.apache.xmlbeans.StringEnumAbstractBase
{
/**
* Returns the enum value for a string, or null if none.
*/
public static Enum forString(java.lang.String s)
{ return (Enum)table.forString(s); }
/**
* Returns the enum value corresponding to an int, or null if none.
*/
public static Enum forInt(int i)
{ return (Enum)table.forInt(i); }
private Enum(java.lang.String s, int i)
{ super(s, i); }
static final int INT_CONFIRMED = 1;
static final int INT_REJECTED = 2;
static final int INT_REQUEST_INCOMPLETE = 3;
public static final org.apache.xmlbeans.StringEnumAbstractBase.Table table =
new org.apache.xmlbeans.StringEnumAbstractBase.Table
(
new Enum[]
{
new Enum("confirmed", INT_CONFIRMED),
new Enum("rejected", INT_REJECTED),
new Enum("request incomplete", INT_REQUEST_INCOMPLETE),
}
);
private static final long serialVersionUID = 1L;
private java.lang.Object readResolve() { return forInt(intValue()); }
}
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.Status newValue(java.lang.Object obj) {
return (net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.Status) type.newValue( obj ); }
public static net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.Status newInstance() {
return (net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.Status) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.Status newInstance(org.apache.xmlbeans.XmlOptions options) {
return (net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.Status) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
private Factory() { } // No instance of this class allowed
}
}
/**
* An XML estimatedToC(@http://www.opengis.net/sps/1.0).
*
* This is a complex type.
*/
public interface EstimatedToC extends org.apache.xmlbeans.XmlObject
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(EstimatedToC.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s017DC22ED83B027ECC9397C7ED15308E").resolveHandle("estimatedtocfd2felemtype");
/**
* Gets the "TimeInstant" element
*/
net.opengis.gml.TimeInstantType getTimeInstant();
/**
* Sets the "TimeInstant" element
*/
void setTimeInstant(net.opengis.gml.TimeInstantType timeInstant);
/**
* Appends and returns a new empty "TimeInstant" element
*/
net.opengis.gml.TimeInstantType addNewTimeInstant();
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.EstimatedToC newInstance() {
return (net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.EstimatedToC) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.EstimatedToC newInstance(org.apache.xmlbeans.XmlOptions options) {
return (net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.EstimatedToC) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
private Factory() { } // No instance of this class allowed
}
}
/**
* An XML missingParameters(@http://www.opengis.net/sps/1.0).
*
* This is a complex type.
*/
public interface MissingParameters extends org.apache.xmlbeans.XmlObject
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(MissingParameters.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s017DC22ED83B027ECC9397C7ED15308E").resolveHandle("missingparameters083belemtype");
/**
* Gets the "InputDescriptor" element
*/
net.opengis.sps.x10.InputDescriptorDocument.InputDescriptor getInputDescriptor();
/**
* Sets the "InputDescriptor" element
*/
void setInputDescriptor(net.opengis.sps.x10.InputDescriptorDocument.InputDescriptor inputDescriptor);
/**
* Appends and returns a new empty "InputDescriptor" element
*/
net.opengis.sps.x10.InputDescriptorDocument.InputDescriptor addNewInputDescriptor();
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.MissingParameters newInstance() {
return (net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.MissingParameters) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.MissingParameters newInstance(org.apache.xmlbeans.XmlOptions options) {
return (net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse.MissingParameters) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
private Factory() { } // No instance of this class allowed
}
}
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse newInstance() {
return (net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse newInstance(org.apache.xmlbeans.XmlOptions options) {
return (net.opengis.sps.x10.UpdateRequestResponseDocument.UpdateRequestResponse) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
private Factory() { } // No instance of this class allowed
}
}
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static net.opengis.sps.x10.UpdateRequestResponseDocument newInstance() {
return (net.opengis.sps.x10.UpdateRequestResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static net.opengis.sps.x10.UpdateRequestResponseDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
return (net.opengis.sps.x10.UpdateRequestResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
/** @param xmlAsString the string value to parse */
public static net.opengis.sps.x10.UpdateRequestResponseDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
return (net.opengis.sps.x10.UpdateRequestResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
public static net.opengis.sps.x10.UpdateRequestResponseDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (net.opengis.sps.x10.UpdateRequestResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
/** @param file the file from which to load an xml document */
public static net.opengis.sps.x10.UpdateRequestResponseDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.sps.x10.UpdateRequestResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
public static net.opengis.sps.x10.UpdateRequestResponseDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.sps.x10.UpdateRequestResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
public static net.opengis.sps.x10.UpdateRequestResponseDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.sps.x10.UpdateRequestResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
public static net.opengis.sps.x10.UpdateRequestResponseDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.sps.x10.UpdateRequestResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
public static net.opengis.sps.x10.UpdateRequestResponseDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.sps.x10.UpdateRequestResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
public static net.opengis.sps.x10.UpdateRequestResponseDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.sps.x10.UpdateRequestResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
public static net.opengis.sps.x10.UpdateRequestResponseDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.sps.x10.UpdateRequestResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
public static net.opengis.sps.x10.UpdateRequestResponseDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.sps.x10.UpdateRequestResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
public static net.opengis.sps.x10.UpdateRequestResponseDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
return (net.opengis.sps.x10.UpdateRequestResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
public static net.opengis.sps.x10.UpdateRequestResponseDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (net.opengis.sps.x10.UpdateRequestResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
public static net.opengis.sps.x10.UpdateRequestResponseDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
return (net.opengis.sps.x10.UpdateRequestResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
public static net.opengis.sps.x10.UpdateRequestResponseDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (net.opengis.sps.x10.UpdateRequestResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static net.opengis.sps.x10.UpdateRequestResponseDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (net.opengis.sps.x10.UpdateRequestResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static net.opengis.sps.x10.UpdateRequestResponseDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (net.opengis.sps.x10.UpdateRequestResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
private Factory() { } // No instance of this class allowed
}
}