Book Image

OSWorkflow: A guide for Java developers and architects to integrating open-source Business Process Management

Book Image

OSWorkflow: A guide for Java developers and architects to integrating open-source Business Process Management

Overview of this book

OSWorkflow is an open-source workflow engine written entirely in Java with a flexible approach and a technical user-base target. It is released under the Apache License. You can create simple or complex workflows, depending on your needs. You can focus your work on the business logic and rules. No more Petri Net or finite state machine coding! You can integrate OSWorkflow into your application with a minimum of fuss. OSWorkflow provides all of the workflow constructs that you might encounter in real-life processes, such as steps, conditions, loops, splits, joins, roles, etc.This book explains in detail all the various aspects of OSWorkflow, without assuming any prior knowledge of Business Process Management. Real-life examples are used to clarify concepts.
Table of Contents (13 chapters)
OSWorkflow
Credits
About the Author
About the Reviewers
Introduction

Ways to Implement OSWorkflow


There are two ways of implementing OSWorkflow: the first is embedding OSWorkflow in your application and the second is using OSWorkflow as a standalone workflow server.

OSWorkflow as a Workflow Layer

If your needs are just workflow support in one application, then incorporating the OSWorkflow libraries and using the API is sufficient. An example application architecture diagram showing the Business Process Layer that is responsible for tracking the business process in the application is as follows:

The addition of this layer to the standard three adds workflow capabilities to the domain model. This domain model contains the abstract entities of the business domain that travel with the business process. Remember, that each layer can talk only to the layers above and below, so the Business Domain Layer handles Business Process Layer objects. The section entitled Embedding OSWorkflow into your Applications in Chapter 4 will cover this architectural option.

OSWorkflow...