com.ibm.pim.extensionpoints
Interface ValidationRuleFunction


public interface ValidationRuleFunction

Since:
6.0.0

Field Summary
static java.lang.String copyright
           
 
Method Summary
 boolean rule(CategoryValidationRuleFunctionArguments inArgs)
          Perform validation rule for categories.
 boolean rule(CollaborationCategoryValidationRuleFunctionArguments inArgs)
          Perform validation rule for collaboration categories.
 boolean rule(CollaborationItemValidationRuleFunctionArguments inArgs)
          Perform validation rule for collaboration items.
 boolean rule(ItemValidationRuleFunctionArguments inArgs)
          Perform validation rule for items.
 

Field Detail

copyright

static final java.lang.String copyright
See Also:
Constant Field Values
Method Detail

rule

boolean rule(ItemValidationRuleFunctionArguments inArgs)
Perform validation rule for items.

Implementations should return true if the rule passes, or use the error writer and return false if not.

Parameters:
inArgs - the arguments for this invocation.
Returns:
true if the rule passed, false if the validation failed.

rule

boolean rule(CategoryValidationRuleFunctionArguments inArgs)
Perform validation rule for categories.

Implementations should return true if the rule passes, or use the error writer and return false if not.

Parameters:
inArgs - the arguments for this invocation.
Returns:
true if the rule passed, false if the validation failed.

rule

boolean rule(CollaborationItemValidationRuleFunctionArguments inArgs)
Perform validation rule for collaboration items.

Implementations should return true if the rule passes, or use the error writer and return false if not.

Parameters:
inArgs - the arguments for this invocation.
Returns:
true if the rule passed, false if the validation failed.

rule

boolean rule(CollaborationCategoryValidationRuleFunctionArguments inArgs)
Perform validation rule for collaboration categories.

Implementations should return true if the rule passes, or use the error writer and return false if not.

Parameters:
inArgs - the arguments for this invocation.
Returns:
true if the rule passed, false if the validation failed.