com.ibm.wbiserver.brules.mgmt.problem

Class ProblemTemplateNotAssociatedWithRuleSet

  1. java.lang.Object
  2. extended bycom.ibm.wbiserver.brules.mgmt.problem.Problem
  3. extended bycom.ibm.wbiserver.brules.mgmt.problem.ProblemTemplateNotAssociatedWithRuleSet
All implemented interfaces:
java.io.Serializable

  1. public class ProblemTemplateNotAssociatedWithRuleSet
  2. extends Problem
  3. implements java.io.Serializable
Problem class representing the error that the template associated with the specified rule is not associated with the ruleset to which the rule is being added.
See Also:
Serialized Form

Field Summary

Modifier and Type Field and Description
  1. static
  2. java.lang.String
COPYRIGHT

Constructor Summary

Constructor and Description
ProblemTemplateNotAssociatedWithRuleSet(TemplateInstanceRule ruleBeingAdded,RuleSet ruleSet)
Constructor for the ProblemTemplateNotAssociatedWithRuleSet class.

Method Summary

Modifier and Type Method and Description
  1. java.lang.String
getErrorMessage()
  1. TemplateInstanceRule
getRuleBeingAdded()
Get the rule being added to the ruleset.
  1. RuleSet
getRuleSet()
Get the ruleset to which the rule was being added.
Methods inherited from class com.ibm.wbiserver.brules.mgmt.problem.Problem
getErrorType
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Field Detail

  1. public static final java.lang.String COPYRIGHT
See Also:

Constructor Detail

ProblemTemplateNotAssociatedWithRuleSet

  1. public ProblemTemplateNotAssociatedWithRuleSet( TemplateInstanceRule ruleBeingAdded,
  2. RuleSet ruleSet)
Constructor for the ProblemTemplateNotAssociatedWithRuleSet class.
Parameters:
ruleBeingAdded - The new rule being added to the ruleset.
ruleSet - The ruleset to which the rule was being added..

Method Detail

getRuleBeingAdded

  1. public TemplateInstanceRule getRuleBeingAdded( )
Get the rule being added to the ruleset.
Returns:
The rule being added to the ruleset.

getRuleSet

  1. public RuleSet getRuleSet()
Get the ruleset to which the rule was being added.
Returns:
The ruleset to which the rule was being added.

getErrorMessage

  1. public java.lang.String getErrorMessage( )
Specified by: