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

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


  }

  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

Related Classes of com.founder.fix.fixflow.core.impl.persistence.instance.CommentPersistence

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.