Package com.catify.processengine.serviceproviders.jpa.beans

Examples of com.catify.processengine.serviceproviders.jpa.beans.DataObjectEntity


  }

  @Override
  public void saveObject(String uniqueProcessId, String objectId,
      String instanceId, Object dataObject) {
    dataObjectRepository.save(new DataObjectEntity(getObjectKey(
        uniqueProcessId, objectId, instanceId), uniqueProcessId,
        objectId, instanceId, dataObject));
  }
View Full Code Here

TOP

Related Classes of com.catify.processengine.serviceproviders.jpa.beans.DataObjectEntity

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.