com.webmethods.caf.jcr.faces.data.query
Class PropertySearchTerm

java.lang.Object
  extended by com.webmethods.caf.jcr.faces.data.query.PropertySearchTerm
All Implemented Interfaces:
Serializable

public class PropertySearchTerm
extends Object
implements Serializable

Used as a refine field term in a search query to represent a property filter.

See Also:
Serialized Form

Field Summary
protected  String operator
          Holds the operator of the filter term
protected  String propertyName
          Holds the property name of the filter term
protected static Random random
           
protected  String rowId
          Holds the rowId of the filter term
protected  Object value
          Holds the value of the filter term
 
Constructor Summary
PropertySearchTerm()
          Default Constructor
 
Method Summary
 String getOperator()
          Returns the operator of this term
 String getPropertyName()
          Returns the property name of this term
 String getRowId()
          Returns the row id of this term
 Object getValue()
          Returns the value of this term
 void setOperator(String operator)
          Sets the operator for this term
 void setPropertyName(String propertyName)
          Sets the property name of this term
 void setValue(Object value)
          Sets the value of this term
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

random

protected static transient Random random

rowId

protected String rowId
Holds the rowId of the filter term


propertyName

protected String propertyName
Holds the property name of the filter term


operator

protected String operator
Holds the operator of the filter term


value

protected Object value
Holds the value of the filter term

Constructor Detail

PropertySearchTerm

public PropertySearchTerm()
Default Constructor

Method Detail

getRowId

public String getRowId()
Returns the row id of this term

Returns:
the rowId

getPropertyName

public String getPropertyName()
Returns the property name of this term

Returns:
the propertyName

setPropertyName

public void setPropertyName(String propertyName)
Sets the property name of this term

Parameters:
propertyName - the propertyName to set

getOperator

public String getOperator()
Returns the operator of this term

Returns:
the operator

setOperator

public void setOperator(String operator)
Sets the operator for this term

Parameters:
operator - the operator to set

getValue

public Object getValue()
Returns the value of this term

Returns:
the value

setValue

public void setValue(Object value)
Sets the value of this term

Parameters:
value - the value to set