Package nl.b3p.csw.jaxb.ows
Class RequestMethodType
- java.lang.Object
-
- nl.b3p.csw.jaxb.ows.OnlineResourceType
-
- nl.b3p.csw.jaxb.ows.RequestMethodType
-
public class RequestMethodType extends OnlineResourceType
Connect point URL and any constraints for this HTTP request method for this operation request. In the OnlineResourceType, the xlink:href attribute in the xlink:simpleLink attribute group shall be used to contain this URL. The other attributes in the xlink:simpleLink attribute group should not be used.Java class for RequestMethodType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="RequestMethodType"> <complexContent> <extension base="{http://www.opengis.net/ows}OnlineResourceType"> <sequence> <element name="Constraint" type="{http://www.opengis.net/ows}DomainType" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<DomainType>constraint
-
Constructor Summary
Constructors Constructor Description RequestMethodType()Default no-arg constructorRequestMethodType(String type, String href, String role, String arcrole, String title, String show, String actuate, List<DomainType> constraint)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.-
Methods inherited from class nl.b3p.csw.jaxb.ows.OnlineResourceType
getActuate, getArcrole, getHref, getRole, getShow, getTitle, getType, setActuate, setArcrole, setHref, setRole, setShow, setTitle, setType
-
-
-
-
Field Detail
-
constraint
protected List<DomainType> constraint
-
-
Method Detail
-
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
-
-