Uses of Interface
com.netscape.cmscore.ldap.ILdapExpression
-
Packages that use ILdapExpression Package Description com.netscape.cmscore.ldap -
-
Uses of ILdapExpression in com.netscape.cmscore.ldap
Classes in com.netscape.cmscore.ldap that implement ILdapExpression Modifier and Type Class Description class
LdapAndExpression
This class represents an expression of the form. class
LdapOrExpression
This class represents an Or expression of the form (var1 op val1 OR var2 op val2).class
LdapSimpleExpression
This class represents an expression of the form var = val, var != val, var < val, var > val, var <= val, var >= val.Fields in com.netscape.cmscore.ldap declared as ILdapExpression Modifier and Type Field Description protected ILdapExpression
LdapRule. mFilterExp
Methods in com.netscape.cmscore.ldap that return ILdapExpression Modifier and Type Method Description ILdapExpression
LdapRule. getPredicate()
Returns the predicate expression for the rule.static ILdapExpression
LdapPredicateParser. parse(java.lang.String predicateExpression)
Parse the predicate expression and return a vector of expressions.static ILdapExpression
LdapSimpleExpression. parse(java.lang.String input)
Methods in com.netscape.cmscore.ldap with parameters of type ILdapExpression Modifier and Type Method Description void
LdapRule. setPredicate(ILdapExpression exp)
Sets a predicate expression for rule matching.Constructors in com.netscape.cmscore.ldap with parameters of type ILdapExpression Constructor Description LdapAndExpression(ILdapExpression exp1, ILdapExpression exp2)
LdapOrExpression(ILdapExpression exp1, ILdapExpression exp2)
-