com.ibm.wbiserver.brules.mgmt.problem

Class ProblemValueViolatesParmConstraints

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

  1. public class ProblemValueViolatesParmConstraints
  2. extends Problem
  3. implements java.io.Serializable
Problem class representing the error that the specified value violates the constraints defined on the specified parameter.
See Also:
Serialized Form

Field Summary

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

Constructor Summary

Constructor and Description
ProblemValueViolatesParmConstraints(java.lang.String value,Parameter parameter)
Constructor for the ProblemValueViolatesParmConstraints class.

Method Summary

Modifier and Type Method and Description
  1. java.lang.String
getErrorMessage()
  1. Parameter
getParameter()
Get the parameter to which the value was being associated.
  1. java.lang.String
getValue()
Get the value that caused the error.
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

ProblemValueViolatesParmConstraints

  1. public ProblemValueViolatesParmConstraints( java.lang.String value,
  2. Parameter parameter)
Constructor for the ProblemValueViolatesParmConstraints class.
Parameters:
value - The value that caused the error.
parameter - The parameter to which the value was being associated.

Method Detail

getValue

  1. public java.lang.String getValue( )
Get the value that caused the error.
Returns:
The value that caused the error.

getParameter

  1. public Parameter getParameter()
Get the parameter to which the value was being associated.
Returns:
The parameter to which the value was being associated.

getErrorMessage

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