Package org.jbpm.persistence.session.objects

Examples of org.jbpm.persistence.session.objects.MyVariableExtendingSerializable


        String variableText = "my extending serializable variable text";
        KnowledgeBase kbase = getKnowledgeBaseForExtendingInterfaceVariablePersistence(processId,
                                                                                       variableText);
        StatefulKnowledgeSession ksession = createSession( kbase , env );
        Map<String, Object> initialParams = new HashMap<String, Object>();
        initialParams.put( "x", new MyVariableExtendingSerializable( variableText ) );
       
        // Start process and execute workItem
        long processInstanceId = ksession.startProcess( processId, initialParams ).getId();
       
        ksession = reloadSession( ksession, kbase, env );
View Full Code Here

TOP

Related Classes of org.jbpm.persistence.session.objects.MyVariableExtendingSerializable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.