Java Doc for WfProcess.java in  » Workflow-Engines » shark » org » enhydra » shark » api » client » wfmodel » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Workflow Engines » shark » org.enhydra.shark.api.client.wfmodel 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.enhydra.shark.api.client.wfmodel.WfProcess

All known Subclasses:   org.enhydra.shark.ejb.WfProcessSSBean,  org.enhydra.shark.WfProcessWrapper,
WfProcess
public interface WfProcess extends WfExecutionObject(Code)
OMG definition: A WfProcess is the performer of a workflow request. All workflow objects that perform work implement this interface. This interface allows work to proceed asynchronously while being monitored and controlled. The WfProcess interface specializes WfExecutionObject interface by adding an operation to start the execution of the process, an operation to obtain the result produced by the process and relationships with WfRequester and WfActivity.

We extended OMG's interface by duplicating methods, and adding additional parameter that represents transaction. If you use methods without SharkTransaction parameter, the transaction will be implicitly created, and if you use it with SharkTransaction parameter you must obey to some rules explained in HowTo documentation.





Method Summary
 WfActivityIteratorget_activities_in_state(String state)
     This operation is used to get an iterator over WfActivity objects that are in a certain state.
 WfActivityIteratorget_iterator_step()
     Zero or more WfActivities are associated with a WfProcess.
 WfActivity[]get_sequence_step(int max_number)
     Zero or more WfActivities are associated with a WfProcess.
 inthow_many_step()
     Zero or more WfActivities are associated with a WfProcess.
 booleanis_member_of_step(WfActivity member)
     Zero or more WfActivities are associated with a WfProcess.
 WfProcessMgrmanager()
     A process is associated with one WfProcessMgr; the association is established when the WfProcess is generated and cannot be modified.
 WfRequesterrequester()
     A WfProcess is created (using a WfProcessMgr) by a user or automated resource and associated with a WfRequester.
 Mapresult()
     The result produced by the WfProcess.
 voidset_requester(WfRequester new_value)
     A WfProcess is created (using a WfProcessMgr) by a user or automated resource and associated with a WfRequester.
 voidstart()
     This operation is used to initiate enactment of a WfProcess.



Method Detail
get_activities_in_state
WfActivityIterator get_activities_in_state(String state) throws Exception, InvalidState(Code)
This operation is used to get an iterator over WfActivity objects that are in a certain state. The state is an input parameter. In case an invalid state has been specified, the exception InvalidState is raised.



get_iterator_step
WfActivityIterator get_iterator_step() throws Exception(Code)
Zero or more WfActivities are associated with a WfProcess. The association is established when an activity is created as part of the enactment of the WfProcess.

The following operation returns iterator for qurying associated activities based on some criteria.




get_sequence_step
WfActivity[] get_sequence_step(int max_number) throws Exception(Code)
Zero or more WfActivities are associated with a WfProcess. The association is established when an activity is created as part of the enactment of the WfProcess.

The following operation returns max_number of WfActivity objects associated with an WfProcess (no matter in which state they are). If max_number is less or eaqual to zero, or it is greater than the number of existing activities, all associated WfActivity objects will be returned.




how_many_step
int how_many_step() throws Exception(Code)
Zero or more WfActivities are associated with a WfProcess. The association is established when an activity is created as part of the enactment of the WfProcess.

The following operation provide the information about the number of active WfActivity items currently associated with a WfProcess.




is_member_of_step
boolean is_member_of_step(WfActivity member) throws Exception(Code)
Zero or more WfActivities are associated with a WfProcess. The association is established when an activity is created as part of the enactment of the WfProcess.

The following operation returns true if given activity is associated with WfProcess.




manager
WfProcessMgr manager() throws Exception(Code)
A process is associated with one WfProcessMgr; the association is established when the WfProcess is generated and cannot be modified. The following operation returns the WfProcessMgr associated with the WfProcess.



requester
WfRequester requester() throws Exception(Code)
A WfProcess is created (using a WfProcessMgr) by a user or automated resource and associated with a WfRequester. The WfRequester may be a WfActivity or an adapter for external clients. WfProcess always has one WfRequester; an implementation of the WfM Facility may allow for re-assignment of the WfRequester associated with a WfProcess.

A WfProcess will inform its WfRequester about status changes such as modification of its state and its context using the requesters receive_event operation.

The following operation returns the requester.




result
Map result() throws Exception, ResultNotAvailable(Code)
The result produced by the WfProcess. In general the result is undefined until the process completes, but some processes may produce intermediate results. A ResultNotAvailable exception is raised when the result cannot be obtained yet.



set_requester
void set_requester(WfRequester new_value) throws Exception, CannotChangeRequester(Code)
A WfProcess is created (using a WfProcessMgr) by a user or automated resource and associated with a WfRequester. The WfRequester may be a WfActivity or an adapter for external clients. WfProcess always has one WfRequester; an implementation of the WfM Facility may allow for re-assignment of the WfRequester associated with a WfProcess.

A WfProcess will inform its WfRequester about status changes such as modification of its state and its context using the requesters receive_event operation.

The following operations changes the process requester.




start
void start() throws Exception, CannotStart, AlreadyRunning(Code)
This operation is used to initiate enactment of a WfProcess. The state of the process is changed from open.not_running.not_started to open.running.
throws:
  CannotStart - raised when the process cannot be started (e.g., because it isnot properly initialized).
throws:
  AlreadyRunning - raised when the process has already been started.
throws:
  Exception -



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.