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

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

The newest version!
/*
 * An XML document type.
 * Localname: DCP
 * Namespace: http://www.opengis.net/ows/1.1
 * Java type: net.opengis.ows.x11.DCPDocument
 *
 * 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 DCP(@http://www.opengis.net/ows/1.1) element.
 *
 * This is a complex type.
 */
public interface DCPDocument extends org.apache.xmlbeans.XmlObject {
    DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "dcp1816doctype");
    org.apache.xmlbeans.SchemaType type = Factory.getType();


    /**
     * Gets the "DCP" element
     */
    net.opengis.ows.x11.DCPDocument.DCP getDCP();

    /**
     * Sets the "DCP" element
     */
    void setDCP(net.opengis.ows.x11.DCPDocument.DCP dcp);

    /**
     * Appends and returns a new empty "DCP" element
     */
    net.opengis.ows.x11.DCPDocument.DCP addNewDCP();

    /**
     * An XML DCP(@http://www.opengis.net/ows/1.1).
     *
     * This is a complex type.
     */
    public interface DCP extends org.apache.xmlbeans.XmlObject {
        ElementFactory Factory = new ElementFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "dcpbe19elemtype");
        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();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy