com.softwareag.centrasite.api.csom.search
Interface CSOSearchConditionManager


public interface CSOSearchConditionManager

The CSOSearchConditionManager supports

  • comparison conditions,
  • keyword conditions
  • customer defined conditions
    that can be specified in the CLL configuration. CSOSearchConditions represent search conditions in a generic way.

    Ex:
    CSOSearchManager searchMgr = CSOFactory.getSearchManager();
    CSOSearchConditionManager condMgr = searchMgr.getSearchConditionManager();
    CSOSearchCondition cond = condMgr.createCondition(CSOSearchCondition.KeywordCondition);


    Method Summary
     CSOSearchCondition createCondition(java.lang.String name)
              Creates the search condition based on the given name
     

    Method Detail

    createCondition

    CSOSearchCondition createCondition(java.lang.String name)
                                       throws CLLException
    Creates the search condition based on the given name

    Parameters:
    name - that uniquely identifies the type of SearchCondition(Comparision/Keyword/Custom)
    Returns:
    SearchCondition for the given name.
    Throws:
    CLLException