Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
jBPM6 Developer Guide

You're reading from   jBPM6 Developer Guide Learn about the components, tooling, and integration points that are part of the JBoss Business Process Management (BPM) framework

Arrow left icon
Product type Paperback
Published in Aug 2014
Publisher Packt
ISBN-13 9781783286614
Length 310 pages
Edition 3rd Edition
Languages
Tools
Arrow right icon
Toc

Table of Contents (13) Chapters Close

Preface 1. Why Do We Need Business Process Management? FREE CHAPTER 2. BPM Systems' Structure 3. Using BPMN 2.0 to Model Business Scenarios 4. Understanding the KIE Workbench 5. Creating a Process Project in the KIE Workbench 6. Human Interactions 7. Defining Your Environment with the Runtime Manager 8. Implementing Persistence and Transactions 9. Integration with Other Knowledge Definitions 10. Integrating KIE Workbench with External Systems A. The UberFire Framework Index

Conventions

In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.

Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "You can also run the server using the same command line by typing mvn exec:exec once the installation is done."

A block of code is set as follows:

public class RuleFlowProcessInstance implements ProcessInstance {
  public RuleFlowProcess getRuleFlowProcess() { ... }
  public int getState() { ... }
  public void setVariable(String name, Object value) { ... }
  public Collection<NodeInstance> getNodeInstances() { ... }
  public Object getVariable(String name) { ... }
}

When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:

TaskService taskService = HumanTaskServiceFactory.
        newTaskServiceConfigurator().
        entityManagerFactory(emf).
        userGroupCallback(ugCallback).
        interceptor(priority, new UserLogInterceptor()).
        getTaskService();

Any command-line input or output is written as follows:

bin/standalone.sh --server-config=standalone-full.xml

New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "Once the Finish button is clicked on, we're directed to the project editor, where we can configure dependencies, KIE bases, KIE sessions, and all the project-relevant components."

Note

Warnings or important notes appear in a box like this.

Tip

Tips and tricks appear like this.

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image