com.ibm.wbiserver.brules.mgmt.problem

Class ProblemStartDateAfterEndDate

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

  1. public class ProblemStartDateAfterEndDate
  2. extends Problem
  3. implements java.io.Serializable
Problem class representing the error that the start date is after the end date.
See Also:
Serialized Form

Field Summary

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

Constructor Summary

Constructor and Description
ProblemStartDateAfterEndDate(java.util.Date startDate,java.util.Date endDate)
Constructor for the ProblemStartDateAfterEndDate class.

Method Summary

Modifier and Type Method and Description
  1. java.util.Date
getEndDate()
Get the end date involved in the error.
  1. java.lang.String
getErrorMessage()
  1. java.util.Date
getStartDate()
Get the start date involved in 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

ProblemStartDateAfterEndDate

  1. public ProblemStartDateAfterEndDate( java.util.Date startDate,
  2. java.util.Date endDate)
Constructor for the ProblemStartDateAfterEndDate class.
Parameters:
startDate - The start date involved in the error.
endDate - The end date involved in the error.

Method Detail

getEndDate

  1. public java.util.Date getEndDate( )
Get the end date involved in the error.
Returns:
The end date involved in the error.

getStartDate

  1. public java.util.Date getStartDate( )
Get the start date involved in the error.
Returns:
The start date involved in the error.

getErrorMessage

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