bexee.model.activity
Interface Activity

All Superinterfaces:
AttributeNames, BPELElement
All Known Subinterfaces:
Assign, CatchAll, Compensate, CompensationHandler, Empty, Flow, Invoke, Pick, Receive, Reply, Scope, Sequence, Switch, Terminate, Throw, Wait, While
All Known Implementing Classes:
AbstractActivity, AssignImpl, CompensateImpl, EmptyImpl, FlowImpl, InvokeImpl, ReceiveImpl, ReplyImpl, ScopeImpl, SequenceImpl, SwitchImpl, TerminateImpl, ThrowImpl

public interface Activity
extends BPELElement

This interface represents a BPEL activity. To be extended by interfaces of concrete BPEL activities.

Version:
$Revision: 1.1 $, $Date: 2004/12/15 14:18:11 $
Author:
Patric Fornasier, Pawel Kowalski

Field Summary
static boolean DEFAULT_SUPPRESS_JOIN_FAILURE
          The default value for the suppressJoinFailure property.
 
Fields inherited from interface bexee.model.AttributeNames
ABSTRACT_PROCESS, CONDITION, CREATE_INSTANCE, ELEMENT, ENABLE_INSTANCE_COMPESATION, ENDPOINT_REFERENCE, EXPRESSION, EXPRESSION_LANGUAGE, FAULT_NAME, INITIATE, INPUT_VARIABLE, JOIN_CONDITION, MESSAGE_TYPE, MY_ROLE, NAME, OPAQUE, OPERATION, OUTPUT_VARIABLE, PART, PARTNER_LINK, PARTNER_LINK_TYPE, PARTNER_ROLE, PATTERN, PORT_TYPE, PROPERTY, QUERY_LANGUAGE, SET, SUPPRESS_JOIN_FAILURE, TARGET_NAMESPACE, TYPE, VARIABLE, XMLNS
 
Method Summary
 void addSource(Source source)
          Declare this activity as a named link source.
 void addTarget(Target target)
          Declare this activity as a named link target.
 BooleanExpression getJoinExpression()
          Get the joinExpression of this activity.
 java.lang.String getName()
          Get the name of this activity.
 java.util.List getSources()
          Get all source declarations of this activity.
 java.util.List getTargets()
          Get all target declarations of this activity.
 boolean isSuppressJoinFailure()
          Get whether the join failure is suppressed on this activity.
 void setJoinExpression(BooleanExpression joinExpression)
          Set the joinExpression of this activity.
 void setName(java.lang.String name)
          Set the name of this activity.
 void setSources(java.util.List sources)
          Declare this activity as named link sources.
 void setSuppressJoinFailure(boolean suppressJoinFailure)
          Set whether to suppress a join failure on this activity.
 void setTargets(java.util.List targets)
          Declare this activity as named link targets.
 
Methods inherited from interface bexee.model.BPELElement
accept, accept
 

Field Detail

DEFAULT_SUPPRESS_JOIN_FAILURE

public static final boolean DEFAULT_SUPPRESS_JOIN_FAILURE
The default value for the suppressJoinFailure property.

See Also:
Constant Field Values
Method Detail

setName

public void setName(java.lang.String name)
Set the name of this activity.

Parameters:
name - a String value

getName

public java.lang.String getName()
Get the name of this activity.

Returns:
a String value

setJoinExpression

public void setJoinExpression(BooleanExpression joinExpression)
Set the joinExpression of this activity.

Parameters:
joinExpression - a BooleanExpression value

getJoinExpression

public BooleanExpression getJoinExpression()
Get the joinExpression of this activity.

Returns:
a BooleanExpression value

setSuppressJoinFailure

public void setSuppressJoinFailure(boolean suppressJoinFailure)
Set whether to suppress a join failure on this activity.

Parameters:
suppressJoinFailure - a boolean value

isSuppressJoinFailure

public boolean isSuppressJoinFailure()
Get whether the join failure is suppressed on this activity.

Returns:
a boolean value

addTarget

public void addTarget(Target target)
Declare this activity as a named link target.

Parameters:
target - a Target value

setTargets

public void setTargets(java.util.List targets)
Declare this activity as named link targets.

Parameters:
targets - a List value

getTargets

public java.util.List getTargets()
Get all target declarations of this activity.

Returns:
a List value

addSource

public void addSource(Source source)
Declare this activity as a named link source.

Parameters:
source - a Source value

setSources

public void setSources(java.util.List sources)
Declare this activity as named link sources.

Parameters:
sources - a List value

getSources

public java.util.List getSources()
Get all source declarations of this activity.

Returns:
a List value


Copyright © 2004 Berne University of Applied Sciences. All Rights Reserved.