de.danet.an.workflow.domain

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.domain 
de.danet.an.workflow.domain
This package contains the base implementations of the business classes for the workflow engine. It also contains Interfaces for the domain classes which extends the omg core interfaces.

For the 1. iteration, we have simple base implementations for the omg interfaces:

  • The class AbstractExecutionObject implemements the interface {@link de.danet.an.workflow.omgcore.WfExecutionObject WfExecutionObject} and provides a simple status handling.
  • The interface Process extends the interface {@link de.danet.an.workflow.omgcore.WfProcess WfProcess} and provides additional methods for handling a process at runtime.
  • The class AbstractProcess implemements the interface {@link de.danet.an.workflow.api.Process Process} and provides a simple mechanism for starting activities.
  • The interface Activity extends the interface {@link de.danet.an.workflow.omgcore.WfActivity WfActivity} and provides additional methods for handling an activity at runtime.
  • The class AbstractActivity implemements the interface {@link de.danet.an.workflow.domain.AbstractActivity Activity} and provides a simple no-operation with joining or splitting. It provides start- and finish mode settings to control the execution.
  • The class ProcessMgr implemements the interface {@link de.danet.an.workflow.omgcore.WfProcessMgr WfProcessMgr} and supports three fixed tepes of processes to start.
  • The class Requester implemements the interface {@link de.danet.an.workflow.omgcore.WfRequester WfRequester} .
  • The class Contributor implemements the interfaces {@link de.danet.an.workflow.omgcore.WfRequester WfRequester} and {@link de.danet.an.workflow.omgcore.WfResource WfResource} . It provides simple implementation as a requester.
@since V1.0
Java Source File NameTypeComment
AbstractActivity.javaClass AbstractActivity represents a simple implementation of the interface ActivityLocal ActivityLocal . It has the following features:
  • It has no transition restrictions (INLINE, SPLIT, JOIN)
  • The activity is an implementation activity of the type NO.
AbstractConfiguration.javaClass AbstractConfiguration represents a simple implementation of the interface Configuration Configuration . Nothing implemented yet.
AbstractExecutionObject.javaClass AbstractExecutionObject represents a base implementation of the interface de.danet.an.workflow.api.ExecutionObjectExecutionObject .

With logger level DEBUG, event handling information will be logged.

AbstractProcess.javaClass AbstractProcess represents the base implementation of the interface ProcessLocal ProcessLocal .

With logger level DEBUG, event handling information and information about process context changes will be logged.

AbstractProcessDefinitionDirectory.javaClass This class provides a basic implementation of de.danet.an.workflow.localapi.ProcessDefinitionDirectoryLocal ProcessDefinitionDirectory .
ActImplBase.javaClass This class provides some base functionallity for both tool and sub-process based activity implementations.
ActivityBase.javaClass This class provides an implementation of ExtActivity with all methods except key() throwing UnsupportedOprationException.
ApplicationDefinition.javaClass This class defines the application.
BAForExceptionHandling.javaClass This class provides a representation of a block activity for exception handling.
BAForProcessInstantiation.javaClass This class provides a temporary representation of a block activity used during process instantiation.
author:
   Michael N.
BlockActivity.javaClass The base class for all temporary representations of blocak activities.
author:
   Michael N.
CannotNotifyProcessException.javaClass This exception is thrown if a process cannot be notified by a completed activity.
Deadline.javaClass This class represents a defined deadline with all its attributes.
DefaultAssignmentAuditEvent.javaClass A DefaultAssignmentAuditEvent implements an audit record of assignment change information for either the status of an assignment change for a WfActivity or when an exisiting assignment is reassigned to another resource.
DefaultAuditEvent.javaClass

A DefaultAuditEvent implements an audit record of workflow event information.

It provides information on the source of the event and contains specific event data.

DefaultCreateProcessAuditEvent.javaClass A DefaultCreateProcessAuditEvent implements an audit record with information related to the creation of a process.
DefaultDataAuditEvent.javaClass A DefaultDataAuditEvent implements an audit record of either context changes of a WfExecutionObject or result changes of a WfActivity.
DefaultParticipant.javaClass This class defines the handler for a participant.
DefaultProcessClosedAuditEvent.javaClass This class provides a specific state audit event for closing a process.
DefaultProcessDataInfo.javaClass This class extends HashMap in order to provide a default implementation of ProcessDataInfo.
DefaultProcessDefinition.javaClass This class represents a process definitions with the root tag ProcessDefinition.
DefaultStateAuditEvent.javaClass A DefaultStateAuditEvent implements an audit record of information for a WfExecutionObject's state change.
ImplCompleteAuditEvent.javaClass This class provides provides an internal event that is fired when a tool has completed its work on a activity.
author:
   Michael N.
ProcBasedImpl.javaClass This class represents a sub-process based activity implementation, i.e.
ProcDefValidator.javaClass This class performes validation methods for a process defintion package.
ProcessDataWithParams.javaClass This class is used to return the results from a sub-process invocation to the invoking activity.
RASInvocationHandler.javaInterface Invoking the resource assignment service involves interaction with the remoting layer that cannot be handled here.
Requester.javaClass Requester represents a simple implementation of the interface de.danet.an.workflow.localcoreapi.WfRequesterLocal WfRequester .
SubProcRequester.javaClass This class provides ...
TimedObject.javaInterface This interface is implemented by domain objects that want to have associated timers.
ToolBasedImpl.javaClass This class represents (an item of) a tool based activity implementation, i.e.
ToolInvocationFailedAuditEvent.javaClass This class provides an internal event that is thrown when the invocation of a tool has failed.
ToolInvocationHandler.javaInterface Invoking a tool can have a complex relationship with the persistence layer as it involves transactional aspects.
TransitionDefinition.javaClass Represents a transition between two activities.
TransitionDefinitionLocal.javaClass Represents a transition between two activities.
TransitionManager.javaClass TransitionManager calculates lists of activities with special properties of a de.danet.an.workflow.localcoreapi.WfProcessLocal WfProcess .

If log level is set to DEBUG messages about intermediate evaluation results will be generated.

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