Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 package org.enhydra.shark.api.internal.instancepersistence; 2 3 4 public interface ProcessPersistenceInterface { 5 6 public void setId (String id); 7 8 public String getId (); 9 10 public void setProcessMgrName (String mgrName); 11 12 public String getProcessMgrName (); 13 14 public void setExternalRequesterClassName (String extReqFullClassName); 15 16 public String getExternalRequesterClassName (); 17 18 public void setActivityRequesterId (String actReqId); 19 20 public String getActivityRequesterId (); 21 22 public void setActivityRequestersProcessId (String actReqProcId); 23 24 public String getActivityRequestersProcessId (); 25 26 public void setResourceRequesterId (String resReqId); 27 28 public String getResourceRequesterId (); 29 30 public void setState (String state); 31 32 public String getState (); 33 34 public String getName (); 35 36 public void setName (String name); 37 38 public String getDescription (); 39 40 public void setDescription (String desc); 41 42 public short getPriority (); 43 44 public void setPriority (short priority); 45 46 public long getLastStateTime(); 47 48 public void setLastStateTime(long timestamp); 49 50 public long getCreatedTime(); 51 52 public void setCreatedTime(long timestamp); 53 54 public long getStartedTime(); 55 56 public void setStartedTime(long timestamp); 57 58 public long getLimitTime(); 59 60 public void setLimitTime(long timestamp); 61 62 } 63
| Popular Tags
|