Package org.jbpm.pvm.internal.history.model

Examples of org.jbpm.pvm.internal.history.model.HistoryDetailImpl


    this.commentId = commentId;
  }

  public Object execute(Environment environment) throws Exception {
    DbSession dbSession = environment.get(DbSession.class);
    HistoryDetailImpl comment = (HistoryDetailImpl) dbSession.get(HistoryDetailImpl.class, Long.parseLong(commentId));
    if (comment!=null) {
      dbSession.delete(comment);
     
    } else {
      throw new JbpmException("comment "+commentId+" doesn't exist");
View Full Code Here


    this.commentId = commentId;
  }

  public Object execute(Environment environment) throws Exception {
    DbSession dbSession = environment.get(DbSession.class);
    HistoryDetailImpl comment = (HistoryDetailImpl) dbSession.get(HistoryDetailImpl.class, Long.parseLong(commentId));
    if (comment!=null) {
      dbSession.delete(comment);
     
    } else {
      throw new JbpmException("comment "+commentId+" doesn't exist");
View Full Code Here

TOP

Related Classes of org.jbpm.pvm.internal.history.model.HistoryDetailImpl

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.