| de.danet.an.workflow.localapi.ProcessDirectoryLocal
ProcessDirectoryLocal | public interface ProcessDirectoryLocal extends WfObjectLocal(Code) | | Client interface for the process directory.
|
Method Summary | |
Info | lookupActivityInfo(ActivityUniqueKey key) This method finds the activity identified be the given unique
key and returns all available information about it. | ProcessLocal | lookupProcessLocal(String processMgrName, String processKey) This method finds the process identified by the given
type and key.
Parameters: processMgrName - type of the given process. Parameters: processKey - key of the process. | Collection | processMgrNames() This operation method returns a collection of the
defined process types as Strings. |
lookupActivityInfo | Info lookupActivityInfo(ActivityUniqueKey key) throws InvalidKeyException(Code) | | This method finds the activity identified be the given unique
key and returns all available information about it. This is a
shortcut for first looking up the activity and then retrieving
the "essential" information about it.
Parameters: key - denotes the activity to be looked up. the corresponding Activity.Info value exception: InvalidKeyException - if the activity specified bykey cannot be found. |
lookupProcessLocal | ProcessLocal lookupProcessLocal(String processMgrName, String processKey) throws InvalidKeyException(Code) | | This method finds the process identified by the given
type and key.
Parameters: processMgrName - type of the given process. Parameters: processKey - key of the process. the process found. throws: InvalidKeyException - if no such process can be found. |
processMgrNames | Collection processMgrNames()(Code) | | This operation method returns a collection of the
defined process types as Strings.
collection of String |
|
|