Package org.jbpm.pvm.internal.tx

Examples of org.jbpm.pvm.internal.tx.DeserializedObject


      ObjectInputStream ois = new ObjectInputStream(bais);
      Object object = ois.readObject();
     
      Transaction transaction = EnvironmentImpl.getFromCurrent(Transaction.class, false);
      if (transaction!=null) {
        transaction.registerDeserializedObject(new DeserializedObject(object, scopeInstance, (BlobVariable) variable));
      }
     
      return object;

    } catch (Exception e) {
View Full Code Here

TOP

Related Classes of org.jbpm.pvm.internal.tx.DeserializedObject

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.