Package nl.b3p.csw.jaxb.csw
Class GetDomainResponseType
- java.lang.Object
-
- nl.b3p.csw.jaxb.csw.GetDomainResponseType
-
public class GetDomainResponseType extends Object
Returns the actual values for some property. In general this is a subset of the value domain (that is, set of permissible values), although in some cases these may be the same.Java class for GetDomainResponseType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="GetDomainResponseType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="DomainValues" type="{http://www.opengis.net/cat/csw/2.0.2}DomainValuesType" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<DomainValuesType>domainValues
-
Constructor Summary
Constructors Constructor Description GetDomainResponseType()Default no-arg constructorGetDomainResponseType(List<DomainValuesType> domainValues)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<DomainValuesType>getDomainValues()Gets the value of the domainValues property.
-
-
-
Field Detail
-
domainValues
protected List<DomainValuesType> domainValues
-
-
Constructor Detail
-
GetDomainResponseType
public GetDomainResponseType()
Default no-arg constructor
-
GetDomainResponseType
public GetDomainResponseType(List<DomainValuesType> domainValues)
Fully-initialising value constructor
-
-
Method Detail
-
getDomainValues
public List<DomainValuesType> getDomainValues()
Gets the value of the domainValues 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 domainValues property.For example, to add a new item, do as follows:
getDomainValues().add(newItem);Objects of the following type(s) are allowed in the list
DomainValuesType
-
-