All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jbpm.tx.TxService Maven / Gradle / Ivy

The newest version!
package org.jbpm.tx;

import org.jbpm.svc.Service;

public class TxService implements Service {

  private static final long serialVersionUID = 1L;
  
  boolean isRollbackOnly = false;

  public void close() {
  }

  public boolean isRollbackOnly() {
    return isRollbackOnly;
  }
  public void setRollbackOnly() {
    isRollbackOnly = true;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy