org.enhydra.shark.api.client.wfmodel

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 
org.enhydra.shark.api.client.wfmodel

Derived from OMG interface. Contains base interfaces and exceptions for implementation of Workflow Management Facility.

Java Source File NameTypeComment
AlreadyRunning.javaClass An AlreadyRunning exception is raised when someone tries to start the process/activity that has already been started.
AlreadySuspended.javaClass An AlreadySuspended exception is raised when someone tries to suspend the process/activity that has already been suspended.
CannotAcceptSuspended.javaClass A CannotAcceptSuspended exception is raised when someone tries to accept assignment for activity that is suspended.
CannotChangeRequester.javaClass Raised when set_requester() cannot change the WfRequester of a WfProcess.
CannotComplete.javaClass Is raised by an attempt to complete execution of a WfActivity when it cannot be completed yet.
CannotResume.javaClass A CannotResume exception is raised when the execution object cannot be resumed.
CannotStart.javaClass This exceptions is raised by an attempt to start a WfProcess that cannot be started yet (e.g., because it is not properly initialized).
CannotStop.javaClass A CannotStop exception is raised when the execution object cannot be terminated; for example, termination of a WfActivity might not be allowed when its implementation is still active and cannot be terminated; also it can occur when one tries to terminate execution object that is already closed.
CannotSuspend.javaClass A CannotSuspend exception is raised when the execution object cannot be suspended.
HistoryNotAvailable.javaClass Is raised by a request for event audit history of a WfExecutionObject when the History is not available.
how_closedType.javaClass Used to describe sets of states of various workflow objects:

completed - When an execution object has finished its task in the overall workflow process it enters the completed state; it is assumed that all execution objects associated with that execution object are completed when it enters this state.

terminated - Indicates that enactment of the execution object was stopped before normal completion.

InvalidData.javaClass Is raised by an attempt to update the context of the result of a WfExecutionObject with data that do not match the signature of that object.
InvalidPerformer.javaClass Is raised by an attempt to signal a WfEventAudit to a WfRequester that was not created by one of the WfProcesses associated with the WfRequester.
InvalidRequester.javaClass An InvalidRequester exception is raised when a WfRequester is being identified that cannot be a 'parent' of instances of the process model. It is up to the implementation of the WfM Facility to decide which WfRequester objects to accept or not.
InvalidResource.javaClass Is raised by an attempt to assign an invalid resource to the assignment.
InvalidState.javaClass Is raised by an attempt to change the state of a WfExecutionObject to a state that is not defined for that object.
NotAssigned.javaClass Is raised by an attempt to release a WfResource from an assignment it is not associated with.
NotEnabled.javaClass Is raised by an attempt to create a WfProcess using a WfProcessMgr that is disabled.
NotRunning.javaClass A NotRunning exception is raised when WfExecutionObject is not running, and someone tries to suspend, resume, terminate or abort it.
NotSuspended.javaClass A NotSuspended exception is raised when the WfExecutionObject is not suspended, and someone tries to resume it.
process_mgr_stateType.javaClass Used to describe sets of states of WfProcessMgr object.
RequesterRequired.javaClass Is raised when a valid WfRequester is required to create process instance from the process definition, but one is not supplied.
ResultNotAvailable.javaClass Is raised when the requested result of a WfExecutionObject is not available (yet).
SourceNotAvailable.javaClass Is raised by a request for the source of a WfEventAudit when the source is no longer available.
TransitionNotAllowed.javaClass Is raised by an attempt to perform an invalid state transition of a WfExecutionObject.
UpdateNotAllowed.javaClass Is raised when it is not allowed to update the process/activity context.
WfActivity.javaInterface OMG definition:WfActivity is a step in a process that is associated, as part of an aggregation, with a single WfProcess.
WfActivityIterator.javaInterface OMG definition: The WfActivityIterator interface specializes the WfBase::BaseIterator interface and adds activity specific operations.
WfAssignment.javaInterface OMG definition: WfAssignment links WfActivity objects to WfResource objects.
WfAssignmentEventAudit.javaInterface OMG definition: This interface specializes WfEventAudit for assignment change events.
WfAssignmentIterator.javaInterface OMG definition: The WfAssignmentIterator interface specializes the WfBase::BaseIterator interface and adds WfAssignment specific operations.

We extended OMG's interface by duplicating methods, and adding additional parameter that represents transaction.

WfCreateProcessEventAudit.javaInterface OMG definition: This interface specializes WfEventAudit by adding information related to creation of a WfProcess.
WfDataEventAudit.javaInterface OMG definition: This interface specializes WfEventAudit for data change events.
WfEventAudit.javaInterface OMG definition: WfEventAudit provides audit records of workflow event information.
WfEventAuditIterator.javaInterface OMG definition: The WfEventAuditIterator interface specializes the WfBase::BaseIterator interface and adds the event audit specific operations. All of the attributes described for the WfEventAudit interface can be used in query expressions.

We extended OMG's interface by duplicating methods, and adding additional parameter that represents transaction.

WfExecutionObject.javaInterface OMG definition: WfExecutionObject is an abstract base interface that defines common attributes, states, and operations for WfProcess and WfActivity.
WfProcess.javaInterface OMG definition: A WfProcess is the performer of a workflow request.
WfProcessIterator.javaInterface OMG definition: The WfProcessIterator interface specializes the WfBase::BaseIterator interface and adds specific process operations.
WfProcessMgr.javaInterface OMG definition: A WfProcessMgr represents a template for a specific workflow process; it is used to create instances of a workflow process.
WfRequester.javaInterface OMG definition: WfRequester is the interface that has a direct concern with the execution and results of a workflow process - it represents the request for some work to be done.
WfResource.javaInterface OMG definition: WfResource is an abstraction that represents a person or thing that will potentially accept an assignment to an activity.
WfStateEventAudit.javaInterface OMG definition: This interface specializes WfEventAudit by adding state change information.
while_openType.javaClass Used to describe sets of states of various workflow objects:

not_running - Object is active and quiescent, but ready to execute.

why_not_runningType.javaClass Used to describe sets of states of various workflow objects:

not_started - Provides a state after creation where the object is active and ready to be initialized and started.

suspended - Provides a state to temporarily pause the execution of the object.

workflow_stateType.javaClass Used to describe sets of states of various workflow objects.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.