Uses of Interface
com.ibm.pim.workflow.ExitValue

Packages that use ExitValue
com.ibm.pim.collaboration   
com.ibm.pim.workflow   
 

Uses of ExitValue in com.ibm.pim.collaboration
 

Methods in com.ibm.pim.collaboration that return ExitValue
 ExitValue CollaborationStepTransitionConfiguration.getDefaultExitValue()
          Gets the exit value on which the collaboration objects are expected to move out (that is, the exit value they were originally assigned).
 ExitValue CollaborationStepTransitionConfiguration.getExitValue(CollaborationObject object)
          Gets the current exit value for the specified collaboration object.
 

Methods in com.ibm.pim.collaboration with parameters of type ExitValue
 void CollaborationStepTransitionConfiguration.setExitValue(CollaborationObject object, ExitValue newExitValue)
          Sets a new exit value for the specified collaboration object.
 

Uses of ExitValue in com.ibm.pim.workflow
 

Methods in com.ibm.pim.workflow that return ExitValue
 ExitValue WorkflowStep.createExitValue(ExitValue exitValue)
          Add a new exit value, using the ExitValue object passed in, for this Workflow Step.
 ExitValue WorkflowStep.createExitValue(java.lang.String exitValue)
          Add a new exit value, using the string passed in, for this Workflow Step.
 ExitValue WorkflowStep.getExitValue(java.lang.String exitValue)
          Fetch an ExitValue object from this Workflow Step, identified by the String passed in.
 

Methods in com.ibm.pim.workflow that return types with arguments of type ExitValue
 java.util.Collection<ExitValue> WorkflowStep.getExitValues()
          Get all the possible exit values for items/categories leaving this Workflow Step.
 

Methods in com.ibm.pim.workflow with parameters of type ExitValue
 ExitValue WorkflowStep.createExitValue(ExitValue exitValue)
          Add a new exit value, using the ExitValue object passed in, for this Workflow Step.
 java.util.Collection<WorkflowStep> WorkflowStep.getNextSteps(ExitValue exitValue)
          Fetch the next Workflow Steps, for the specified ExitValue on this step
 boolean WorkflowStep.hasExitValue(ExitValue exitValue)
          Check if this Workflow Step has an exit value identified by the ExitValue object passed in.
 void WorkflowStep.removeExitValue(ExitValue exitValue)
          Remove an exit value, identified by the ExitValue object passed in, from this Workflow Step.
 void WorkflowStep.setNextStep(ExitValue exitValue, WorkflowStep nextStep)
          Override/set the next step for a particular exit value on this step
 void WorkflowStep.setNextSteps(ExitValue exitValue, java.util.Collection<WorkflowStep> nextSteps)
          Override/set the next steps for a particular exit value on this step