Class OperationsMetadata
- java.lang.Object
-
- nl.b3p.csw.jaxb.ows.OperationsMetadata
-
public class OperationsMetadata extends Object
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://www.opengis.net/ows}Operation" maxOccurs="unbounded" minOccurs="2"/> <element name="Parameter" type="{http://www.opengis.net/ows}DomainType" maxOccurs="unbounded" minOccurs="0"/> <element name="Constraint" type="{http://www.opengis.net/ows}DomainType" maxOccurs="unbounded" minOccurs="0"/> <element ref="{http://www.opengis.net/ows}ExtendedCapabilities" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<DomainType>constraintprotected ExtendedCapabilitiesextendedCapabilitiesprotected List<Operation>operationprotected List<DomainType>parameter
-
Constructor Summary
Constructors Constructor Description OperationsMetadata()Default no-arg constructorOperationsMetadata(List<Operation> operation, List<DomainType> parameter, List<DomainType> constraint, ExtendedCapabilities extendedCapabilities)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<DomainType>getConstraint()Gets the value of the constraint property.ExtendedCapabilitiesgetExtendedCapabilities()Gets the value of the extendedCapabilities property.List<Operation>getOperation()Metadata for unordered list of all the (requests for) operations that this server interface implements.List<DomainType>getParameter()Gets the value of the parameter property.voidsetExtendedCapabilities(ExtendedCapabilities value)Sets the value of the extendedCapabilities property.
-
-
-
Field Detail
-
parameter
protected List<DomainType> parameter
-
constraint
protected List<DomainType> constraint
-
extendedCapabilities
protected ExtendedCapabilities extendedCapabilities
-
-
Constructor Detail
-
OperationsMetadata
public OperationsMetadata()
Default no-arg constructor
-
OperationsMetadata
public OperationsMetadata(List<Operation> operation, List<DomainType> parameter, List<DomainType> constraint, ExtendedCapabilities extendedCapabilities)
Fully-initialising value constructor
-
-
Method Detail
-
getOperation
public List<Operation> getOperation()
Metadata for unordered list of all the (requests for) operations that this server interface implements. The list of required and optional operations implemented shall be specified in the Implementation Specification for this service. Gets the value of the operation property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the operation property.For example, to add a new item, do as follows:
getOperation().add(newItem);Objects of the following type(s) are allowed in the list
Operation
-
getParameter
public List<DomainType> getParameter()
Gets the value of the parameter property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the parameter property.For example, to add a new item, do as follows:
getParameter().add(newItem);Objects of the following type(s) are allowed in the list
DomainType
-
getConstraint
public List<DomainType> getConstraint()
Gets the value of the constraint property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the constraint property.For example, to add a new item, do as follows:
getConstraint().add(newItem);Objects of the following type(s) are allowed in the list
DomainType
-
getExtendedCapabilities
public ExtendedCapabilities getExtendedCapabilities()
Gets the value of the extendedCapabilities property.- Returns:
- possible object is
ExtendedCapabilities
-
setExtendedCapabilities
public void setExtendedCapabilities(ExtendedCapabilities value)
Sets the value of the extendedCapabilities property.- Parameters:
value- allowed object isExtendedCapabilities
-
-