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

Summary


This chapter covered a lot of ground; first we learned how to configure OSWorkflow to load XML descriptors, and then we took a very through view of the OSWorkflow API to use it inside our applications as an embedded workflow engine.

Later we saw the persistence alternatives OSWorkflow has to store the workflow descriptor and instance data. We also saw the JUnit unit-testing framework that allows us to verify the correctness and validate the functional requirements of our business processes.

We saw that Spring enables us to decouple our application with clear separation of concerns and declarative transactions and security. OSWorkflow integrates seamlessly with Spring benefiting from of all it features.

The chapter ended with the description of the different built-in security mechanisms of OSWorkflow such as actions and step restrictions. We also learned how to extend the OSWorkflow user and group directory by using OSUser.

The next chapter is about the JBoss Rules engine, a very efficient...