Package com.founder.fix.fixflow.core.impl.persistence.instance

Examples of com.founder.fix.fixflow.core.impl.persistence.instance.CommentPersistence.insertComment()


  public void insert(String insertStatement, PersistentObject persistentObject) {

    if (insertStatement.equals("insertComment")) {
      CommentPersistence commentPersistence = new CommentPersistence(connection);
      commentPersistence.insertComment(persistentObject);
    }
    if (insertStatement.equals("insertDeployment")) {
      DeploymentPersistence deploymentPersistence = ProcessObjectFactory.FACTORYINSTANCE.createDeploymentPersistence(connection);
      deploymentPersistence.insertDeployment(persistentObject);
    }
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.