Package net.opengis.ows.x11
Interface HTTPDocument.HTTP
-
- All Superinterfaces:
org.apache.xmlbeans.XmlObject,org.apache.xmlbeans.XmlTokenSource
- All Known Implementing Classes:
HTTPDocumentImpl.HTTPImpl
- Enclosing interface:
- HTTPDocument
public static interface HTTPDocument.HTTP extends org.apache.xmlbeans.XmlObjectAn XML HTTP(@http://www.opengis.net/ows/1.1). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classHTTPDocument.HTTP.FactoryA factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static org.apache.xmlbeans.SchemaTypetype
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RequestMethodTypeaddNewGet()Appends and returns a new empty value (as xml) as the last "Get" elementRequestMethodTypeaddNewPost()Appends and returns a new empty value (as xml) as the last "Post" elementRequestMethodType[]getGetArray()Gets array of all "Get" elementsRequestMethodTypegetGetArray(int i)Gets ith "Get" elementRequestMethodType[]getPostArray()Gets array of all "Post" elementsRequestMethodTypegetPostArray(int i)Gets ith "Post" elementRequestMethodTypeinsertNewGet(int i)Inserts and returns a new empty value (as xml) as the ith "Get" elementRequestMethodTypeinsertNewPost(int i)Inserts and returns a new empty value (as xml) as the ith "Post" elementvoidremoveGet(int i)Removes the ith "Get" elementvoidremovePost(int i)Removes the ith "Post" elementvoidsetGetArray(int i, RequestMethodType get)Sets ith "Get" elementvoidsetGetArray(RequestMethodType[] getArray)Sets array of all "Get" elementvoidsetPostArray(int i, RequestMethodType post)Sets ith "Post" elementvoidsetPostArray(RequestMethodType[] postArray)Sets array of all "Post" elementintsizeOfGetArray()Returns number of "Get" elementintsizeOfPostArray()Returns number of "Post" element-
Methods inherited from interface org.apache.xmlbeans.XmlObject
changeType, compareTo, compareValue, copy, copy, execQuery, execQuery, isImmutable, isNil, schemaType, selectAttribute, selectAttribute, selectAttributes, selectChildren, selectChildren, selectChildren, selectPath, selectPath, set, setNil, substitute, toString, validate, validate, valueEquals, valueHashCode
-
Methods inherited from interface org.apache.xmlbeans.XmlTokenSource
documentProperties, dump, getDomNode, monitor, newCursor, newDomNode, newDomNode, newInputStream, newInputStream, newReader, newReader, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Method Detail
-
getGetArray
RequestMethodType[] getGetArray()
Gets array of all "Get" elements
-
getGetArray
RequestMethodType getGetArray(int i)
Gets ith "Get" element
-
sizeOfGetArray
int sizeOfGetArray()
Returns number of "Get" element
-
setGetArray
void setGetArray(RequestMethodType[] getArray)
Sets array of all "Get" element
-
setGetArray
void setGetArray(int i, RequestMethodType get)Sets ith "Get" element
-
insertNewGet
RequestMethodType insertNewGet(int i)
Inserts and returns a new empty value (as xml) as the ith "Get" element
-
addNewGet
RequestMethodType addNewGet()
Appends and returns a new empty value (as xml) as the last "Get" element
-
removeGet
void removeGet(int i)
Removes the ith "Get" element
-
getPostArray
RequestMethodType[] getPostArray()
Gets array of all "Post" elements
-
getPostArray
RequestMethodType getPostArray(int i)
Gets ith "Post" element
-
sizeOfPostArray
int sizeOfPostArray()
Returns number of "Post" element
-
setPostArray
void setPostArray(RequestMethodType[] postArray)
Sets array of all "Post" element
-
setPostArray
void setPostArray(int i, RequestMethodType post)Sets ith "Post" element
-
insertNewPost
RequestMethodType insertNewPost(int i)
Inserts and returns a new empty value (as xml) as the ith "Post" element
-
addNewPost
RequestMethodType addNewPost()
Appends and returns a new empty value (as xml) as the last "Post" element
-
removePost
void removePost(int i)
Removes the ith "Post" element
-
-