|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Activity | |
bexee.core | Core classes and interfaces of the bexee engine. |
bexee.event | bexee Event package. |
bexee.model | Java representation of the BPEL language. |
bexee.model.activity | This package contains all interfaces representing BPEL activities as specified in the bpel4ws.xsd XML Schema. |
bexee.model.activity.impl | This package contains default implementations
of the interfaces from the bexee.model.activity package. |
bexee.model.elements | This package contains all interfaces representing BPEL elements as specified in the bpel4ws.xsd XML Schema. |
bexee.model.elements.impl | This package contains default implementations
of the interfaces from the bexee.model.elements package. |
bexee.model.process | This package contains interface which are used in order to represent a BPEL process. |
bexee.model.process.impl | This package contains default implementations for the bexee.model.process package. |
Uses of Activity in bexee.core |
Methods in bexee.core with parameters of type Activity | |
void |
ProcessControllerImpl.process(Activity activity,
ProcessInstance instance)
Process method for all unimplemented activities. |
void |
ProcessController.process(Activity activity,
ProcessInstance instance)
Execute an Activity activity. |
Event |
ProcessContext.getEvent(Activity activity)
Get an Event for the given Activity . |
Constructors in bexee.core with parameters of type Activity | |
FlowThread(ProcessController processController,
ProcessInstance processInstance,
Activity activity)
Create a new FlowThread with a ProcessController, ProcessInstance and the Activity to be executed. |
Uses of Activity in bexee.event |
Methods in bexee.event that return Activity | |
Activity |
Event.getActivity()
Get the Activity associated with this Event . |
Constructors in bexee.event with parameters of type Activity | |
Event(Activity activity)
Create a new Event instance with a given
Activity . |
Uses of Activity in bexee.model |
Methods in bexee.model with parameters of type Activity | |
void |
BPELElementVisitor.visit(Activity activity)
Visit an Activity BPELElement . |
void |
AbstractBPELElementVisitor.visit(Activity activity)
Empty method body for Activity |
Uses of Activity in bexee.model.activity |
Subinterfaces of Activity in bexee.model.activity | |
interface |
Assign
Representation of a BPEL Assign activity. |
interface |
CatchAll
Representation of a Catch BPEL element. |
interface |
Compensate
Representation of a Compensate BPEL element. |
interface |
CompensationHandler
Representation of a CompensationHandler BPEL element. |
interface |
Empty
Representation of a BPEL Empy activity. |
interface |
Flow
Representation of a BPEL Flow activity. |
interface |
Invoke
Representation of a BPEL Invoke activity. |
interface |
Pick
Representation of a BPEL Pick activity. |
interface |
Receive
Representation of a BPEL Receive activity. |
interface |
Reply
Representation of a BPEL Reply activity. |
interface |
Scope
A scope structured activity. |
interface |
Sequence
A sequence structured activity. |
interface |
Switch
This is a structured switch activity. |
interface |
Terminate
This activity will terminate a process when called. |
interface |
Throw
This throw activity will throw a fault when called. |
interface |
Wait
Representation of a BPEL Wait activity. |
interface |
While
Representation of a BPEL While activity. |
Methods in bexee.model.activity that return Activity | |
Activity |
Switch.getOtherwise()
|
Activity |
Scope.getActivity()
|
Activity |
CompensationHandler.getActivity()
Get the root activity of this process. |
Activity |
CatchAll.getActivity()
Get the root activity of this Catch element. |
Methods in bexee.model.activity with parameters of type Activity | |
void |
Switch.setOtherwise(Activity activity)
|
void |
Sequence.addActivity(Activity activity)
Add an activity to the activities contained in this sequence structured activitiy. |
void |
Sequence.addActivity(int position,
Activity activity)
Add an activity to the activities contained in this sequence structured activitiy. |
void |
Scope.setActivity(Activity activity)
|
void |
Flow.addActivity(Activity activity)
Add a BPEL activity to this Flow. |
void |
CompensationHandler.setActivity(Activity activity)
Set the root activity of this process. |
void |
CatchAll.setActivity(Activity activity)
Set the root activity of this Catch element. |
Uses of Activity in bexee.model.activity.impl |
Classes in bexee.model.activity.impl that implement Activity | |
class |
AbstractActivity
This is an abstract class to be used by all BPEL Activity implementations. |
class |
AssignImpl
This is a default implementation of the Assign activity. |
class |
CompensateImpl
Default implementation of the Compensate BPEL activity. |
class |
EmptyImpl
Default implementation of the Empty activity. |
class |
FlowImpl
Default implementation of the Flow activity. |
class |
InvokeImpl
Default implementation of the Invoke activity. |
class |
ReceiveImpl
Default implementation of the Receive activity. |
class |
ReplyImpl
Default implementation of the Reply activity. |
class |
ScopeImpl
Default implementation of the Scope activity. |
class |
SequenceImpl
Default implementation of the Sequence activity. |
class |
SwitchImpl
This is a default implementation of the Swich activity interface. |
class |
TerminateImpl
Default implementation of the Terminate activity. |
class |
ThrowImpl
Default implementation of the Throw activity. |
Methods in bexee.model.activity.impl that return Activity | |
Activity |
SwitchImpl.getOtherwise()
|
Activity |
ScopeImpl.getActivity()
|
Methods in bexee.model.activity.impl with parameters of type Activity | |
void |
SwitchImpl.activity(Activity activity)
|
void |
SwitchImpl.setOtherwise(Activity activity)
|
void |
SequenceImpl.activity(Activity activity)
|
void |
SequenceImpl.addActivity(Activity activity)
|
void |
SequenceImpl.addActivity(int position,
Activity activity)
|
void |
ScopeImpl.setActivity(Activity activity)
|
void |
FlowImpl.activity(Activity activity)
|
void |
FlowImpl.addActivity(Activity activity)
|
Uses of Activity in bexee.model.elements |
Methods in bexee.model.elements that return Activity | |
Activity |
OnMessage.getActivity()
|
Activity |
OnAlarm.getActivity()
|
Activity |
CatchFault.getActivity()
|
Activity |
BpelCase.getCaseActivity()
Get the Activity associated with this Case. |
Methods in bexee.model.elements with parameters of type Activity | |
void |
OnMessage.setActivity(Activity activity)
|
void |
OnAlarm.setActivity(Activity activity)
|
void |
CatchFault.setActivity(Activity activity)
|
void |
BpelCase.setCaseActivity(Activity activity)
Set the Activity associated with this Case. |
Uses of Activity in bexee.model.elements.impl |
Methods in bexee.model.elements.impl that return Activity | |
Activity |
BpelCaseImpl.getCaseActivity()
|
Methods in bexee.model.elements.impl with parameters of type Activity | |
void |
BpelCaseImpl.activity(Activity activity)
|
void |
BpelCaseImpl.setCaseActivity(Activity activity)
|
Uses of Activity in bexee.model.process |
Methods in bexee.model.process that return Activity | |
Activity |
Process.getActivity()
Get the root activity of this process. |
Methods in bexee.model.process with parameters of type Activity | |
void |
Process.setActivity(Activity activity)
Set the root activity of this process. |
Uses of Activity in bexee.model.process.impl |
Methods in bexee.model.process.impl that return Activity | |
Activity |
ProcessImpl.getActivity()
|
Methods in bexee.model.process.impl with parameters of type Activity | |
void |
ProcessImpl.activity(Activity activity)
|
void |
ProcessImpl.setActivity(Activity activity)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |