net.opengis.wmts.x10.GetCapabilitiesDocument Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: GetCapabilities
* Namespace: http://www.opengis.net/wmts/1.0
* Java type: net.opengis.wmts.x10.GetCapabilitiesDocument
*
* Automatically generated - do not modify.
*/
package net.opengis.wmts.x10;
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 GetCapabilities(@http://www.opengis.net/wmts/1.0) element.
*
* This is a complex type.
*/
public interface GetCapabilitiesDocument extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "getcapabilities3e2edoctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "GetCapabilities" element
*/
net.opengis.wmts.x10.GetCapabilitiesDocument.GetCapabilities getGetCapabilities();
/**
* Sets the "GetCapabilities" element
*/
void setGetCapabilities(net.opengis.wmts.x10.GetCapabilitiesDocument.GetCapabilities getCapabilities);
/**
* Appends and returns a new empty "GetCapabilities" element
*/
net.opengis.wmts.x10.GetCapabilitiesDocument.GetCapabilities addNewGetCapabilities();
/**
* An XML GetCapabilities(@http://www.opengis.net/wmts/1.0).
*
* This is a complex type.
*/
public interface GetCapabilities extends net.opengis.ows.x11.GetCapabilitiesType {
ElementFactory Factory = new ElementFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "getcapabilitiesbea6elemtype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "service" attribute
*/
java.lang.String getService();
/**
* Gets (as xml) the "service" attribute
*/
net.opengis.ows.x11.ServiceType xgetService();
/**
* Sets the "service" attribute
*/
void setService(java.lang.String service);
/**
* Sets (as xml) the "service" attribute
*/
void xsetService(net.opengis.ows.x11.ServiceType service);
}
}