Uses of Class
org.apache.wiki.workflow.Decision
| Package | Description |
|---|---|
| org.apache.wiki.workflow |
-
Uses of Decision in org.apache.wiki.workflow
Subclasses of Decision in org.apache.wiki.workflow Modifier and Type Class Description classSimpleDecisionDecision subclass that includes two available Outcomes:Outcome.DECISION_APPROVEorOutcome.DECISION_DENY.classSimpleNotificationDecision subclass used for notifications that includes only one available Outcome:Outcome.DECISION_ACKNOWLEDGE.Methods in org.apache.wiki.workflow that return Decision Modifier and Type Method Description protected Decision[]DecisionQueue. decisions()Protected method that returns all pending Decisions in the queue, in order of submission.Methods in org.apache.wiki.workflow that return types with arguments of type Decision Modifier and Type Method Description Collection<Decision>DecisionQueue. getActorDecisions(Session session)Returns a Collection representing the current Decisions that pertain to a users's Session.Methods in org.apache.wiki.workflow with parameters of type Decision Modifier and Type Method Description protected voidDecisionQueue. add(Decision decision)Adds a Decision to the DecisionQueue; also sets the Decision's unique identifier.protected voidDefaultWorkflowManager. addToDecisionQueue(Decision decision)voidDecisionQueue. decide(Decision decision, Outcome outcome)Attempts to complete a Decision by callingdecide(Outcome).voidDecisionQueue. reassign(Decision decision, Principal owner)Reassigns the owner of the Decision to a new owner.protected voidDecisionQueue. remove(Decision decision)Protected method that removes a Decision from the queue.protected voidDefaultWorkflowManager. removeFromDecisionQueue(Decision decision)