com.ibm.wbiserver.brules.mgmt.problem

Class ProblemInvalidActionValueTemplate

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

  1. public class ProblemInvalidActionValueTemplate
  2. extends Problem
  3. implements java.io.Serializable
Problem class representing the error that the action value template being used to define the value for an action is not available to that action, i.e. it is not associated with the TreeActionTermDefinition for the action.
See Also:
Serialized Form

Field Summary

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

Constructor Summary

Constructor and Description
ProblemInvalidActionValueTemplate(TemplateInstanceExpression templateInstanceBeingUsed,TreeAction treeAction)
Constructor for the ProblemInvalidActionValueTemplate class.

Method Summary

Modifier and Type Method and Description
  1. java.lang.String
getErrorMessage()
  1. TemplateInstanceExpression
getTemplateInstanceBeingUsed()
Get the template instance that is in error.
  1. TreeAction
getTreeAction()
The tree action for which the template instance is being used.
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

ProblemInvalidActionValueTemplate

  1. public ProblemInvalidActionValueTemplate( TemplateInstanceExpression templateInstanceBeingUsed,
  2. TreeAction treeAction)
Constructor for the ProblemInvalidActionValueTemplate class.
Parameters:
templateInstanceBeingUsed - The TemplateInstanceExpression being used to define a value for an action. This is the template instance that is in error.
treeAction - The tree action for which the template instance is being used.

Method Detail

getTemplateInstanceBeingUsed

  1. public TemplateInstanceExpression getTemplateInstanceBeingUsed( )
Get the template instance that is in error.
Returns:
The template instance in error.

getTreeAction

  1. public TreeAction getTreeAction( )
The tree action for which the template instance is being used.
Returns:
The tree action for which the template instance is being used.

getErrorMessage

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