com.ibm.task.api

Class JspUsageEnum

  1. java.lang.Object
  2. extended bycom.ibm.task.api.JspUsageEnum
All implemented interfaces:
java.io.Serializable

  1. public final class JspUsageEnum
  2. extends java.lang.Object
  3. implements java.io.Serializable
This enumeration class defines symbolic constants for JSP usage patterns. These values are to be used when JSP location information is retrieved from a Web client setting.
Since:
6.0 - introduced in 5.1
See Also:
JspLocation, WebClientSetting, Serialized Form

Field Summary

Modifier and Type Field and Description
  1. static
  2. java.lang.String
COPYRIGHT
  1. static
  2. JspUsageEnum
FAULT
Symbolic constant for a JSP that displays a fault of a task.
  1. static
  2. JspUsageEnum
INFO
Deprecated.
  1. static
  2. JspUsageEnum
INPUT
Symbolic constant for a JSP that displays the input of a task.
  1. static
  2. JspUsageEnum
INSTANCE
Deprecated.
  1. static
  2. JspUsageEnum
MAP
Symbolic constant for a JSP that maps task data in a HTML form into the format of the task's output.
  1. static
  2. JspUsageEnum
OUTPUT
Symbolic constant for a JSP that displays the output of a task.
  1. static
  2. JspUsageEnum
PAGE
Symbolic constant for a JSP that displays all information about a task, including input and output.
  1. static
  2. JspUsageEnum
TEMPLATE
Deprecated.

Method Summary

Modifier and Type Method and Description
  1. static
  2. JspUsageEnum
newJspUsageEnum(java.lang.String jspUsageEnum)
Factory method to create a JspUsageEnum by its string representation.
  1. java.lang.String
toString()
Returns a string representation of the JspUsageEnum object.
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Field Detail

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

PAGE

  1. public static final JspUsageEnum PAGE
Symbolic constant for a JSP that displays all information about a task, including input and output.
Since:
5.1

INFO

  1. public static final JspUsageEnum INFO
Deprecated.
Symbolic constant for a JSP that displays information about a task.
Since:
5.1

INPUT

  1. public static final JspUsageEnum INPUT
Symbolic constant for a JSP that displays the input of a task.
Since:
5.1

OUTPUT

  1. public static final JspUsageEnum OUTPUT
Symbolic constant for a JSP that displays the output of a task.
Since:
5.1

MAP

  1. public static final JspUsageEnum MAP
Symbolic constant for a JSP that maps task data in a HTML form into the format of the task's output.
Since:
5.1

TEMPLATE

  1. public static final JspUsageEnum TEMPLATE
Deprecated.
Symbolic constant for a JSP that displays information about a task template.
Since:
5.1

INSTANCE

  1. public static final JspUsageEnum INSTANCE
Deprecated.
Symbolic constant for a JSP that displays information about a task instance.
Since:
5.1

FAULT

  1. public static final JspUsageEnum FAULT
Symbolic constant for a JSP that displays a fault of a task.
Since:
5.1

Method Detail

newJspUsageEnum

  1. public static JspUsageEnum newJspUsageEnum( java.lang.String jspUsageEnum)
Factory method to create a JspUsageEnum by its string representation. If the enum passed is not a JspUsageEnum, the default PAGE is set.
Parameters:
jspUsageEnum - The string representation of a JspUsageEnum.
Returns:
JspUsageEnum - The JspUsageEnum object created.
Since:
5.1

toString

  1. public java.lang.String toString( )
Returns a string representation of the JspUsageEnum object.
Overrides:
toString in class java.lang.Object
Returns:
String - A string representation of the object.
Since:
5.1