Package org.drools.persistence.processinstance.persisters

Examples of org.drools.persistence.processinstance.persisters.VariablePersister.persistExternalVariable()


    public VariableInstanceInfo persistVariable(String name, Object o,
            VariableInstanceInfo oldValue, Environment env) {
        VariablePersister persister = getVariablePersister(o);
        VariableInstanceInfo variable = null;
        if (persister != null) {
            variable = persister.persistExternalVariable(name, o, oldValue, env);
        }
        return variable;
    }

    @SuppressWarnings("unchecked")
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.