Package nl.b3p.csw.jaxb.csw
Class QueryConstraintType
- java.lang.Object
-
- nl.b3p.csw.jaxb.csw.QueryConstraintType
-
public class QueryConstraintType extends Object
A search constraint that adheres to one of the following syntaxes: Filter - OGC filter expression CqlText - OGC CQL predicateJava class for QueryConstraintType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="QueryConstraintType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice> <element ref="{http://www.opengis.net/ogc}Filter"/> <element name="CqlText" type="{http://www.w3.org/2001/XMLSchema}string"/> </choice> <attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description QueryConstraintType()Default no-arg constructorQueryConstraintType(Filter filter, String cqlText, String version)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCqlText()Gets the value of the cqlText property.FiltergetFilter()Gets the value of the filter property.StringgetVersion()Gets the value of the version property.voidsetCqlText(String value)Sets the value of the cqlText property.voidsetFilter(Filter value)Sets the value of the filter property.voidsetVersion(String value)Sets the value of the version property.
-
-
-
Method Detail
-
getFilter
public Filter getFilter()
Gets the value of the filter property.- Returns:
- possible object is
Filter
-
setFilter
public void setFilter(Filter value)
Sets the value of the filter property.- Parameters:
value- allowed object isFilter
-
getCqlText
public String getCqlText()
Gets the value of the cqlText property.- Returns:
- possible object is
String
-
setCqlText
public void setCqlText(String value)
Sets the value of the cqlText property.- Parameters:
value- allowed object isString
-
getVersion
public String getVersion()
Gets the value of the version property.- Returns:
- possible object is
String
-
-