All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.opengis.ows.x11.HTTPDocument Maven / Gradle / Ivy

The newest version!
/*
 * An XML document type.
 * Localname: HTTP
 * Namespace: http://www.opengis.net/ows/1.1
 * Java type: net.opengis.ows.x11.HTTPDocument
 *
 * Automatically generated - do not modify.
 */
package net.opengis.ows.x11;

import org.apache.xmlbeans.impl.schema.ElementFactory;
import org.apache.xmlbeans.impl.schema.AbstractDocumentFactory;
import org.apache.xmlbeans.impl.schema.DocumentFactory;
import org.apache.xmlbeans.impl.schema.SimpleTypeFactory;


/**
 * A document containing one HTTP(@http://www.opengis.net/ows/1.1) element.
 *
 * This is a complex type.
 */
public interface HTTPDocument extends org.apache.xmlbeans.XmlObject {
    DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "httpb70ddoctype");
    org.apache.xmlbeans.SchemaType type = Factory.getType();


    /**
     * Gets the "HTTP" element
     */
    net.opengis.ows.x11.HTTPDocument.HTTP getHTTP();

    /**
     * Sets the "HTTP" element
     */
    void setHTTP(net.opengis.ows.x11.HTTPDocument.HTTP http);

    /**
     * Appends and returns a new empty "HTTP" element
     */
    net.opengis.ows.x11.HTTPDocument.HTTP addNewHTTP();

    /**
     * An XML HTTP(@http://www.opengis.net/ows/1.1).
     *
     * This is a complex type.
     */
    public interface HTTP extends org.apache.xmlbeans.XmlObject {
        ElementFactory Factory = new ElementFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "httpb931elemtype");
        org.apache.xmlbeans.SchemaType type = Factory.getType();


        /**
         * Gets a List of "Get" elements
         */
        java.util.List getGetList();

        /**
         * Gets array of all "Get" elements
         */
        net.opengis.ows.x11.RequestMethodType[] getGetArray();

        /**
         * Gets ith "Get" element
         */
        net.opengis.ows.x11.RequestMethodType getGetArray(int i);

        /**
         * Returns number of "Get" element
         */
        int sizeOfGetArray();

        /**
         * Sets array of all "Get" element
         */
        void setGetArray(net.opengis.ows.x11.RequestMethodType[] getArray);

        /**
         * Sets ith "Get" element
         */
        void setGetArray(int i, net.opengis.ows.x11.RequestMethodType get);

        /**
         * Inserts and returns a new empty value (as xml) as the ith "Get" element
         */
        net.opengis.ows.x11.RequestMethodType insertNewGet(int i);

        /**
         * Appends and returns a new empty value (as xml) as the last "Get" element
         */
        net.opengis.ows.x11.RequestMethodType addNewGet();

        /**
         * Removes the ith "Get" element
         */
        void removeGet(int i);

        /**
         * Gets a List of "Post" elements
         */
        java.util.List getPostList();

        /**
         * Gets array of all "Post" elements
         */
        net.opengis.ows.x11.RequestMethodType[] getPostArray();

        /**
         * Gets ith "Post" element
         */
        net.opengis.ows.x11.RequestMethodType getPostArray(int i);

        /**
         * Returns number of "Post" element
         */
        int sizeOfPostArray();

        /**
         * Sets array of all "Post" element
         */
        void setPostArray(net.opengis.ows.x11.RequestMethodType[] postArray);

        /**
         * Sets ith "Post" element
         */
        void setPostArray(int i, net.opengis.ows.x11.RequestMethodType post);

        /**
         * Inserts and returns a new empty value (as xml) as the ith "Post" element
         */
        net.opengis.ows.x11.RequestMethodType insertNewPost(int i);

        /**
         * Appends and returns a new empty value (as xml) as the last "Post" element
         */
        net.opengis.ows.x11.RequestMethodType addNewPost();

        /**
         * Removes the ith "Post" element
         */
        void removePost(int i);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy