jbpm jpdl 3.2.2

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 » jbpm jpdl 3.2.2 
jbpm
License:LGPL
URL:http://www.jboss.com/products/jbpm
Description:Open Source workflow management system based on J2EE.
Package NameComment
org.jbpm central access to the jbpm database and other services.
org.jbpm.ant
org.jbpm.bytes provides support for blobs that is portable over most databases.
org.jbpm.calendar a business calendar that knows about business hours.
org.jbpm.command
org.jbpm.command.impl
org.jbpm.configuration creates object graphs based on xml description for the jbpm configuration.
org.jbpm.context.def
org.jbpm.context.exe contains {@link org.jbpm.context.exe.ContextInstance}, the central interface class for working with process variables. {@link org.jbpm.context.exe.ContextInstance} is the class to be used for working with variables. {@link org.jbpm.context.exe.ContextInstance} is to be used both from client code outside the scope of a process as well as from inside delegation classes that are executed inside the process.
org.jbpm.context.exe.converter implementations of Converter.
org.jbpm.context.exe.matcher
org.jbpm.context.exe.variableinstance implementations of VariableInstance.
org.jbpm.context.log process variable logs.
org.jbpm.context.log.variableinstance variable instance update logs.
org.jbpm.db provides access the to jBPM database.
org.jbpm.db.compatibility
org.jbpm.db.hibernate
org.jbpm.ejb
org.jbpm.ejb.impl
org.jbpm.file.def storage of binary information.

In some parts of the jbpm datamodel, binary data needs to be persisted. Soring binary data in databases is not portable. This package provides a solution for that problem.

This package contains 2 strategies that can be used for storing binary data:

1) one mechanism is to chop the large byte array into smaller pieces of 1K. (see package org.jbpm.bytes).

2) a second mechanism is to store the large binaries in a file on the filesystem. (see configuration property 'jbpm.files.dir')

org.jbpm.graph.action contains basic action implementations.
org.jbpm.graph.def contains all structural elements of a process graph.

The Graph Definition Class Diagram

org.jbpm.graph.exe contains the runtime structures for process executions.
org.jbpm.graph.log graph execution logs.
org.jbpm.graph.node contains basic node implementations.
org.jbpm.graph.node.advanced
org.jbpm.identity

the core identity classes User, Membership and Group. They form a domain model for organisational information like users, groups and permissions. The structure is like this:

So membership models the n-m relation between User and Group. Property Group.type can be used to have different sets of groups. E.g. Groups of type "hierarchy" could represent the hierarchical structure of the company in departments, business units and teams. Groups also have a parent-child relation to model the relation between those hierarchical groups. The name property in the Membership can indicate the role which a certain user fullfills in that group. This is a notion that corresponds to a position in a company. E.g. the manager of business unit A. That is why also the membership can have permissions associated to it. (currently, the permissions are not used in jbpm)

Another group type example could be "security-role". In which you define a set of Groups that correspond to security roles that are used in the webapp security. Then you have to configure a security domain in your servlet container that checks for membership against this group type. That is how it is done now in jBPM.

In later versions (when business calendar becomes persistable), we might also include a link between Users and Groups on the one hand and business calendars on the other hand. To model different time zones and different business hours in different parts of a global company.

org.jbpm.identity.ant
org.jbpm.identity.assignment
org.jbpm.identity.hibernate
org.jbpm.identity.mail
org.jbpm.identity.security adapts the identity model data to JAAS with an implementation of a LoginModule and a Policy. The login module validates the user/password combination and associates a User (=Principal) with the Subject. The policy uses the Permissions that are specified in the identity data (accessed by an IdentitySession) to validate access.
org.jbpm.identity.xml
org.jbpm.instantiation is for instantiating delegation classes and making them persistable with class Delegation.
org.jbpm.jcr These classes define jBPM services for content repository access based on JSR-170, JCR spec 1.0.
org.jbpm.jcr.impl These classes are implementations of the JcrService interface. For each type of repository accessed there must be a JcrService implementation.
org.jbpm.jcr.jackrabbit
org.jbpm.jcr.jndi
org.jbpm.job
org.jbpm.job.executor
org.jbpm.jpdl
org.jbpm.jpdl.convert conversion of jpdl 2.0 to jpdl 3.0.
org.jbpm.jpdl.el
org.jbpm.jpdl.el.impl
org.jbpm.jpdl.el.parser
org.jbpm.jpdl.exe jpdl runtime data structures.
org.jbpm.jpdl.par process archive packaging.
org.jbpm.jpdl.xml jpdl xml parsing.
org.jbpm.logging
org.jbpm.logging.db
org.jbpm.logging.exe contains {@link org.jbpm.logging.exe.LoggingInstance} that collects process logs
org.jbpm.logging.log
org.jbpm.mail
org.jbpm.module.def
org.jbpm.module.exe
org.jbpm.msg abstract interface for asynchronous messaging technologies like e.g. JMS.
org.jbpm.msg.db
org.jbpm.msg.jms
org.jbpm.persistence
org.jbpm.persistence.db
org.jbpm.persistence.jta
org.jbpm.scheduler adds timers to processes.
org.jbpm.scheduler.db
org.jbpm.scheduler.def
org.jbpm.scheduler.ejbtimer
org.jbpm.security pluggable authentication and pluggable authorization.
org.jbpm.security.authentication
org.jbpm.security.authorization
org.jbpm.security.permission
org.jbpm.svc
org.jbpm.svc.save
org.jbpm.taskmgmt task management interface.
org.jbpm.taskmgmt.def
org.jbpm.taskmgmt.exe
org.jbpm.taskmgmt.impl
org.jbpm.taskmgmt.log
org.jbpm.tx
org.jbpm.util
org.jbpm.web
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.