com.webmethods.caf.faces.data.csp
Class CSPSearchQueryTerm

java.lang.Object
  extended by com.webmethods.caf.faces.data.csp.CSPSearchQueryTerm
All Implemented Interfaces:
Serializable

public class CSPSearchQueryTerm
extends Object
implements Serializable

In order to find a CSPContent in CSP you need to provide some meta-data information. The minimum required information is CSPSearchQueryTerm.getIndexId(), CSPSearchQueryTerm.getOperator() and CSPSearchQueryTerm.getValue()

See Also:
Serialized Form

Nested Class Summary
static class CSPSearchQueryTerm.JoinType
           
 
Constructor Summary
CSPSearchQueryTerm()
           
CSPSearchQueryTerm(String indexId, String operator)
           
CSPSearchQueryTerm(String indexId, String operator, String value, CSPSearchQueryTerm.JoinType joinType)
           
 
Method Summary
 String getIndexId()
           
 CSPSearchQueryTerm.JoinType getJoinType()
           
 String getOperator()
          Returns the specified operator
 String getValue()
           
 String getXmlEscapedOperator()
          Returns the escaped XML operator.
 void setIndexId(String indexId)
           
 void setJoinType(CSPSearchQueryTerm.JoinType joinType)
           
 void setOperator(String operator)
           
 void setValue(String value)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CSPSearchQueryTerm

public CSPSearchQueryTerm()

CSPSearchQueryTerm

public CSPSearchQueryTerm(String indexId,
                          String operator)

CSPSearchQueryTerm

public CSPSearchQueryTerm(String indexId,
                          String operator,
                          String value,
                          CSPSearchQueryTerm.JoinType joinType)
Method Detail

setIndexId

public void setIndexId(String indexId)

getIndexId

public String getIndexId()

setOperator

public void setOperator(String operator)

getOperator

public String getOperator()
Returns the specified operator

Returns:
the specified operator

getXmlEscapedOperator

public String getXmlEscapedOperator()
Returns the escaped XML operator.

Returns:
returns the escaped HTML operator.

setValue

public void setValue(String value)

getValue

public String getValue()

setJoinType

public void setJoinType(CSPSearchQueryTerm.JoinType joinType)

getJoinType

public CSPSearchQueryTerm.JoinType getJoinType()