Class PropertySearchTerm

java.lang.Object
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:
  • Field Details

    • sRandom

      protected static transient SecureRandom sRandom
    • 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 Details

    • PropertySearchTerm

      public PropertySearchTerm()
      Default Constructor
  • Method Details

    • 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