com.ibm.wbiserver.brules.mgmt.problem

Class ProblemInvalidAttemptToSetValueTemplateInstance

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

  1. public class ProblemInvalidAttemptToSetValueTemplateInstance
  2. extends Problem
  3. implements java.io.Serializable
Problem class representing the error that an attempt was made to set the value template instance of a part of a decision table when that part currently does not contains a value template instance. It is not allowed to set a value template instance into a part of a decision table that currently does not have a value template instance.
See Also:
Serialized Form

Field Summary

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

Constructor Summary

Constructor and Description
ProblemInvalidAttemptToSetValueTemplateInstance(TemplateInstanceExpression templateInstanceExpressionBeingAdded,java.lang.Object objectBeingAddedTo)
Constructor for the ProblemInvalidAttemptToSetValueTemplateInstance class.

Method Summary

Modifier and Type Method and Description
  1. java.lang.String
getErrorMessage()
  1. java.lang.Object
getObjectBeingAddedTo()
Get the part of the decision table to which the template instance expression was being added.
  1. TemplateInstanceExpression
getTemplateInstanceExpressionBeingAdded()
Get the template instance expression that was being added to a part of a decision table.
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

ProblemInvalidAttemptToSetValueTemplateInstance

  1. public ProblemInvalidAttemptToSetValueTemplateInstance( TemplateInstanceExpression templateInstanceExpressionBeingAdded,
  2. java.lang.Object objectBeingAddedTo)
Constructor for the ProblemInvalidAttemptToSetValueTemplateInstance class.
Parameters:
templateInstanceExpressionBeingAdded - The template instance expression that was being added to a part of a decision table.
objectBeingAddedTo - The part of the decision table to which the template instance expression was being added. This could be a CaseEdge or a TreeAction.

Method Detail

getObjectBeingAddedTo

  1. public java.lang.Object getObjectBeingAddedTo( )
Get the part of the decision table to which the template instance expression was being added.
Returns:
The part of the decision table to which the template instance expression was being added.

getTemplateInstanceExpressionBeingAdded

  1. public TemplateInstanceExpression getTemplateInstanceExpressionBeingAdded( )
Get the template instance expression that was being added to a part of a decision table.
Returns:
The template instance expression that was being added to a part of a decision table.

getErrorMessage

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