KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > shark > instancepersistence > DODSDeadline


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 JavaDoc processId;
9    private String JavaDoc activityId;
10    private long timeLimit;
11    private String JavaDoc exceptionName;
12    private boolean isSynchronous;
13    private boolean isExecuted;
14    private String JavaDoc uniqueId;
15    
16    public void setProcessId (String JavaDoc procId) {
17       this.processId=procId;
18    }
19
20    public String JavaDoc getProcessId () {
21       return processId;
22    }
23
24    public void setActivityId (String JavaDoc actId) {
25       this.activityId=actId;
26    }
27
28    public String JavaDoc 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 JavaDoc exceptionName) {
41       this.exceptionName=exceptionName;
42    }
43
44    public String JavaDoc 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 JavaDoc uniqueId) {
65       this.uniqueId=uniqueId;
66    }
67    
68    public String JavaDoc getUniqueId () {
69       return uniqueId;
70    }
71    
72 }
73
Popular Tags