de.danet.an.workflow.api

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 » wfmopen 2.1.1 » de.danet.an.workflow.api 
de.danet.an.workflow.api

This package defines the the workflow API provided by Danet's workflow component. The API extends the {@link de.danet.an.workflow.omgcore core API} derived from the OMG "Workflow Management Facility Sepcification, V1.2". We consider the interfaces and classes in this package (together with the interfaces and classes in the core API) to be useable as a general Java workflow API, i.e. if there was a JSR for a Java workflow API, we think the merger of these two packages would be a good starting point.

Trying to implement workflow clients using the OMG interface, we found that it lacks some functions that are either absolutely necessary or nice to have. For some OMG interfaces we have therefore defined a corresponding interface that extends the OMG base interface.

We have also added some interface for areas that the OMG specification has purposely omitted from its scope (e.g. access to process definitions).

Finally, the OMG specification has left it open how to access the root objects of type {@link de.danet.an.workflow.omgcore.WfProcessMgr WfProcessMgr}. We have therefore defined a {@link de.danet.an.workflow.api.WorkflowService WorkflowService} and its corresponding {@link de.danet.an.workflow.api.WorkflowServiceFactory factory} that provides this access (among some other useful function).

@since V1.0
Java Source File NameTypeComment
Activity.javaInterface Interface Activity adds some functions to the de.danet.an.workflow.omgcore.WfActivity OMG activity .
ActivityUniqueKey.javaClass This class implements a unique activity key.
AlreadyAssignedException.javaClass This class provides ...
author:
   Michael N.
Application.javaInterface This interface defines methods to access the definition of an application that participates in a workflow process.
Batch.javaInterface This interface must be implemented by classes that can be run as batch.
CannotRemoveException.javaClass This exception is raised by an attempt to remove a de.danet.an.workflow.omgcore.WfProcess WfProcess that is still in progress.
Channel.javaInterface This interface defines a named connection with a process that can be used to receive messages from activities and send messages to activities.

Note that messages sent from the workflow engine to clients on a channel may be lost when no client has opened the channel.

Configuration.javaInterface Interface Configuration. Gives access to the configuration-methods.
DefaultProcessData.javaClass This class extends HashMap in order to provide a default implementation of ProcessData.
author:
   Michael N.
DefaultRequester.javaClass This class provides an implementation of a de.danet.an.workflow.omgcore.WfRequester WfRequester . It class may be used directly if the events that are usually delivered to a requester are of no interest.

If events are to be processed, DefaultRequester must be subclassed with DefaultRequester.receiveEvent receiveEvent overridden with the event handling code.

As an alternative to subclassing, a handler may be passed to the DefaultRequester.DefaultRequester(WorkflowService,WfAuditHandler)constructor .

EventSubscriber.javaInterface An EventSubscriber represents a connection to the workflow engine's event queue.
ExecutionObject.javaInterface Interface ExecutionObject extends the de.danet.an.workflow.omgcore.WfExecutionObject OMG executionobject with additional methods that allow the type-safe de.danet.an.workflow.omgcore.WfExecutionObject.State state class to be used to query and set state.
ExternalReference.javaInterface This interface represents an ExternalReference as specified by XPDL.
FactoryConfigurationError.javaClass This exception is thrown by the WorkflowServiceFactory.newInstance newInstance method of WorkflowServiceFactory.
FormalParameter.javaClass This class provides a description of a formal parameter as used for workflow processes and workflow applications.
GroupResource.javaInterface This interface extends the interface WfResource for resources that are groups.
ImportException.javaClass This exception is thrown by the ProcessDefinitionDirectory.importProcessDefinitionsimportProcessDefinitions method of ProcessDefinitionDirectory and results from collected errors.
InvalidIdException.javaClass This exception is raised if an invalid id is passed to a lookup method.
InvalidKeyException.javaClass This exception is raised if an invalid key is passed to a lookup method.
MethodInvocationBatch.javaClass This class provides a Batch Batch implementation that executes several invocations of remote objects on the server in a single transaction and returns the results.
NoSuchResourceException.javaClass This exception is thrown if a resource has become invalid.
Participant.javaInterface This interface identifies the data type "workflow participant" in a de.danet.an.workflow.omgcore.ProcessDataInfoProcessDataInfo object.
PrioritizedMessage.javaClass This class presents a prioritized message that will be internationalized using the specified resource bundle and the referenced entry.
Process.javaInterface Interface Process adds some functions to the de.danet.an.workflow.omgcore.WfProcess OMG process .
ProcessClosedAuditEvent.javaInterface A ProcessClosedAuditEvent extends the WfStateAuditEvent.
ProcessDefinition.javaInterface This interface defines a process definiton.
ProcessDefinitionDirectory.javaInterface This interface defines a process definiton directory.
ProcessDirectory.javaInterface Client interface for the process directory.
ProcessMgr.javaInterface Interface ProcessMgr adds some functions to the WfProcessMgr OMG process manager .

The meta information returned by contextSignature and resultSignature defined in WfProcessMgr uses Java classes to represents primitive types, as specified for de.danet.an.workflow.omgcore.ProcessDataInfoProcessDataInfo .

RoleResource.javaInterface This interface extends the interface WfResource for resources that are roles.
SAXEventBuffer.javaInterface This interface is implemented by classes that can provide XML content by emitting SAX events.

Applications that use XML at their interfaces can sometimes not avoid using XML like data structures for internal data representation.

Transition.javaInterface Represents a transition between two activities.

Methods of this interface do not throw RemoteExceptions as they are read-only and the data is immutable and simple.

UserResource.javaInterface This interface extends the interface WfResource for resources that are users.
WorkflowService.javaInterface This interface defines the methods provided by the workflow engine.
WorkflowServiceFactory.javaClass This class provides a factory API that enables clients to obtain a workflow service facility.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.