|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use DescriptorStep | |
|---|---|
| org.apache.commons.workflow.base | Basic implementations and base classes for Workflow Management System applications. |
| org.apache.commons.workflow.core | Implementations of Steps in the core library. |
| org.apache.commons.workflow.io | Implementations of Steps in the io library. |
| org.apache.commons.workflow.web | Implementations of Steps in the web library. |
| Uses of DescriptorStep in org.apache.commons.workflow.base |
|---|
| Subclasses of DescriptorStep in org.apache.commons.workflow.base | |
|---|---|
class |
BaseBlock
BaseBlock is a convenient base class for more sophisticated Block implementations. |
| Uses of DescriptorStep in org.apache.commons.workflow.core |
|---|
| Subclasses of DescriptorStep in org.apache.commons.workflow.core | |
|---|---|
class |
AndStep
Evaluate properties specified by the associated Descriptors, and transfer control to the specified step if ALL of them are true (if boolean) or not null (if Object). |
class |
ConstructStep
Create a new object of the specified class, using the constructor that accepts the arguments specified by the associated Descriptor
objects. |
class |
GetStep
For each associated Descriptor, make a copy of the
specified Java object and push it on to the evaluation stack, in the
order that descriptors are listed. |
class |
GotoStep
Unconditionally transfer control to the specified step. |
class |
IfAnyStep
Evaluate properties specified by the associated Descriptors, and execute the nested Steps if and only if ANY of them evaluate to a positive result. |
class |
IfNotAnyStep
Evaluate properties specified by the associated Descriptors, and execute the nested Steps if and only if ALL of them evaluate to a negative result. |
class |
IfNotStep
Evaluate properties specified by the associated Descriptors, and execute the nested Steps if and only if ANY of them evaluate to a negative result. |
class |
IfStep
Evaluate properties specified by the associated Descriptors, and execute the nested Steps if and only if they ALL evaluate to a positive result. |
class |
InvokeStep
Call the specified method of the specified bean in the specified scope, passing arguments as specified by associated Descriptor
objects. |
class |
NotAndStep
Evaluate properties specified by the associated Descriptors, and transfer control to the specified step if ALL of them are false (if boolean) or null (if Object). |
class |
NotOrStep
Evaluate properties specified by the associated Descriptors, and transfer control to the specified step if ANY of them are false (if boolean) or null (if Object). |
class |
OrStep
Evaluate properties specified by the associated Descriptors, and transfer control to the specified step if ANY of them are true (if boolean) or not null (if Object). |
class |
PutStep
For each associated Descriptor, pop the top value from
the evaluation stack, and store it as specified by that Descriptor,
in the order that descriptors are listed. |
class |
RemoveStep
For each associated Descriptor, remove the corresponding
Java object from our Context, in the order that descriptors are
listed. |
class |
WhileAnyStep
Repeatedly evaluate the properties specified by the associated Descriptors, and execute the nested Steps if and only if ANY of them evaluate to a positive result. |
class |
WhileNotAnyStep
Repeatedly evaluate the properties specified by the associated Descriptors, and execute the nested Steps if and only if ALL of them evaluate to a negative result. |
class |
WhileNotStep
Repeatedly evaluate the properties specified by the associated Descriptors, and execute the nested Steps if and only if ANY of them evaluate to a negative result. |
class |
WhileStep
Repeatedly evaluate the properties specified by the associated Descriptors, and execute the nested Steps if and only if ALL of them evaluate to a positive result. |
| Uses of DescriptorStep in org.apache.commons.workflow.io |
|---|
| Subclasses of DescriptorStep in org.apache.commons.workflow.io | |
|---|---|
class |
DisplayStep
For each associated Descriptor, print the value of the
specified Java object to standard output. |
| Uses of DescriptorStep in org.apache.commons.workflow.web |
|---|
| Subclasses of DescriptorStep in org.apache.commons.workflow.web | |
|---|---|
class |
PopulateStep
For each associated Descriptor, populate the properties
of the bean specified by that descriptor from the request parameters of
the current request. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||