1 Reply Latest reply on Feb 22, 2013 2:10 AM by sadiroveski

    How to use a custom object as process variable

    shamalk

      Hi,

      I want to use me.bpm.test.Application as a variable for a process. I'm fully using the web based guvnor designer to design the process.

       

      {code}

      package me.bpm.test

       

       

      public class Application

      {

                public String firstName;

                public String lastName;

                public Date dateOfBirth;

                public String address;

       

                public boolean isApproved = false;

       

                public int getAge()

                {

                          int age;

                          // some code to calculate age using dateOfBirth

                          return age;

                }

      }{code}

       

       

      1. How do I add this class to Guvnor and/or JBPM Console so that in the runtime console can use the class.

      2. How do I define the Mapping (assignment, DataInputSet, DataOutputSet) from freeform templates (.flt) to the process level object? Can I use  firstName_out->Application.firstName ?

       

      Thanks in Advanced.