Package cartago

Examples of cartago.Op



   
    public void done(Task task, RoleId initiator) {
      try {
        doAction(this.getArtifactId(), new Op("done", task, getRoleId(), initiator));
      } catch (ActionFailedException e) {
        logger.error("Action DONE failed: "+e.getFailureMsg());
        e.printStackTrace();
      } catch (CartagoException e) {
        // TODO Auto-generated catch block
View Full Code Here



   
    public void failure(RoleId initiator) {
      try {
        doAction(this.getArtifactId(), new Op("failure", getRoleId(), initiator));
      } catch (ActionFailedException e) {
        logger.error("Action FAILURE failed: "+e.getFailureMsg());
        e.printStackTrace();
      } catch (CartagoException e) {
        // TODO Auto-generated catch block
View Full Code Here

TOP

Related Classes of cartago.Op

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.