1 package org.enhydra.shark.instancepersistence; 2 3 4 import org.enhydra.shark.api.internal.instancepersistence.*; 5 6 public class DODSDeadline implements DeadlinePersistenceInterface { 7 8 private String processId; 9 private String activityId; 10 private long timeLimit; 11 private String exceptionName; 12 private boolean isSynchronous; 13 private boolean isExecuted; 14 private String uniqueId; 15 16 public void setProcessId (String procId) { 17 this.processId=procId; 18 } 19 20 public String getProcessId () { 21 return processId; 22 } 23 24 public void setActivityId (String actId) { 25 this.activityId=actId; 26 } 27 28 public String getActivityId () { 29 return activityId; 30 } 31 32 public void setTimeLimit (long timeLimit) { 33 this.timeLimit=timeLimit; 34 } 35 36 public long getTimeLimit () { 37 return timeLimit; 38 } 39 40 public void setExceptionName (String exceptionName) { 41 this.exceptionName=exceptionName; 42 } 43 44 public String getExceptionName () { 45 return exceptionName; 46 } 47 48 public void setSynchronous (boolean synchronous) { 49 this.isSynchronous=synchronous; 50 } 51 52 public boolean isSynchronous () { 53 return isSynchronous; 54 } 55 56 public void setExecuted (boolean isExecuted) { 57 this.isExecuted=isExecuted; 58 } 59 60 public boolean isExecuted () { 61 return isExecuted; 62 } 63 64 public void setUniqueId (String uniqueId) { 65 this.uniqueId=uniqueId; 66 } 67 68 public String getUniqueId () { 69 return uniqueId; 70 } 71 72 } 73 | Popular Tags |