Interface KeywordBindRule
- 
public interface KeywordBindRuleThis interface represents a keyword bind rule class that can evaluate an evaluation context. It defines a single function that each of the keyword functions implement (ip, dns, roledn, groupdn, ...) 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EnumEvalResultevaluate(AciEvalContext evalCtx)Evaluate a bind rule using the passed in context.voidtoString(StringBuilder buffer)Appends a string representation of this object to the provided buffer. 
 - 
 
- 
- 
Method Detail
- 
evaluate
EnumEvalResult evaluate(AciEvalContext evalCtx)
Evaluate a bind rule using the passed in context.- Parameters:
 evalCtx- An evaluation context to use in the evaluation.- Returns:
 - An enumeration evaluation result.
 
 
- 
toString
void toString(StringBuilder buffer)
Appends a string representation of this object to the provided buffer.- Parameters:
 buffer- The buffer into which a string representation of this object should be appended.
 
 - 
 
 -