net.opengis.ows.x11.ServiceReferenceDocument Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: ServiceReference
* Namespace: http://www.opengis.net/ows/1.1
* Java type: net.opengis.ows.x11.ServiceReferenceDocument
*
* 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 ServiceReference(@http://www.opengis.net/ows/1.1) element.
*
* This is a complex type.
*/
public interface ServiceReferenceDocument extends net.opengis.ows.x11.ReferenceDocument {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "servicereference871fdoctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "ServiceReference" element
*/
net.opengis.ows.x11.ServiceReferenceType getServiceReference();
/**
* Sets the "ServiceReference" element
*/
void setServiceReference(net.opengis.ows.x11.ServiceReferenceType serviceReference);
/**
* Appends and returns a new empty "ServiceReference" element
*/
net.opengis.ows.x11.ServiceReferenceType addNewServiceReference();
}