1 package org.enhydra.shark.instancepersistence; 2 3 4 import org.enhydra.shark.api.internal.instancepersistence.*; 5 6 public class DODSProcess implements ProcessPersistenceInterface { 7 8 private String id; 9 private String managerName; 10 private String extRequesterClassName; 11 private String actRequesterId; 12 private String actRequesterProcessId; 13 private String resRequesterId; 14 private String state; 15 private String name; 16 private String description; 17 private short priority; 18 private long createdTime; 19 private long startedTime; 20 private long lastStateTime; 21 private long limitTime; 22 23 public void setId (String id) { 24 this.id=id; 25 } 26 27 public String getId () { 28 return id; 29 } 30 31 public void setProcessMgrName (String mgrName) { 32 this.managerName=mgrName; 33 } 34 35 public String getProcessMgrName () { 36 return managerName; 37 } 38 39 public void setExternalRequesterClassName (String extReqFullClassName) { 40 this.extRequesterClassName=extReqFullClassName; 41 } 42 43 public String getExternalRequesterClassName () { 44 return extRequesterClassName; 45 } 46 47 public void setActivityRequesterId (String actReqId) { 48 this.actRequesterId=actReqId; 49 } 50 51 public String getActivityRequesterId () { 52 return actRequesterId; 53 } 54 55 public void setActivityRequestersProcessId (String actReqProcId) { 56 this.actRequesterProcessId=actReqProcId; 57 } 58 59 public String getActivityRequestersProcessId () { 60 return actRequesterProcessId; 61 } 62 63 public void setResourceRequesterId (String resReqId) { 64 this.resRequesterId=resReqId; 65 } 66 67 public String getResourceRequesterId () { 68 return resRequesterId; 69 } 70 71 public void setState (String state) { 72 this.state=state; 73 } 74 75 public String getState () { 76 return state; 77 } 78 79 public String getName () { 80 return name; 81 } 82 83 public void setName (String name) { 84 this.name=name; 85 } 86 87 public String getDescription () { 88 return description; 89 } 90 91 public void setDescription (String desc) { 92 this.description=desc; 93 } 94 95 public short getPriority () { 96 return priority; 97 } 98 99 public void setPriority (short priority) { 100 this.priority=priority; 101 } 102 103 public long getLastStateTime() { 104 return lastStateTime; 105 } 106 107 public void setLastStateTime(long timestamp) { 108 lastStateTime = timestamp; 109 } 110 111 public long getCreatedTime() { 112 return createdTime; 113 } 114 115 public void setCreatedTime(long timestamp) { 116 createdTime=timestamp; 117 } 118 119 public long getStartedTime() { 120 return startedTime; 121 } 122 123 public void setStartedTime(long timestamp) { 124 startedTime = timestamp; 125 } 126 127 public long getLimitTime() { 128 return limitTime; 129 } 130 131 public void setLimitTime(long timestamp) { 132 limitTime=timestamp; 133 } 134 135 } 136 | Popular Tags |