1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.hr.time.clocklog;
17
18 import java.sql.Timestamp;
19
20 import javax.persistence.Transient;
21
22 import org.kuali.hr.job.Job;
23 import org.kuali.hr.time.task.Task;
24 import org.kuali.hr.time.util.TkConstants;
25 import org.kuali.hr.time.workarea.WorkArea;
26 import org.kuali.rice.kim.api.identity.Person;
27 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
28
29 public class ClockLog extends PersistableBusinessObjectBase {
30
31 private static final long serialVersionUID = -6928657854016622568L;
32
33 private String tkClockLogId;
34 private String documentId;
35 private String principalId;
36 private Long jobNumber;
37 private Long workArea;
38 private Long task;
39 private Timestamp clockTimestamp;
40 private String clockTimestampTimezone;
41 private String clockAction;
42 private String ipAddress;
43 private String userPrincipalId;
44 private Timestamp timestamp;
45 private boolean unapprovedIP = false;
46
47 @Transient
48 private String missedPunchDocumentId;
49
50 private transient Job job;
51 private transient WorkArea workAreaObj;
52 private transient Task taskObj;
53
54 private transient Person principal;
55
56 public String getTkClockLogId() {
57 return tkClockLogId;
58 }
59
60 public void setTkClockLogId(String tkClockLogId) {
61 this.tkClockLogId = tkClockLogId;
62 }
63
64 public String getPrincipalId() {
65 return principalId;
66 }
67
68 public void setPrincipalId(String principalId) {
69 this.principalId = principalId;
70 }
71
72 public String getDocumentId() {
73 return documentId;
74 }
75
76 public void setDocumentId(String documentId) {
77 this.documentId = documentId;
78 }
79
80 public Long getJobNumber() {
81 return jobNumber;
82 }
83
84 public void setJobNumber(Long jobNumber) {
85 this.jobNumber = jobNumber;
86 }
87
88 public Timestamp getClockTimestamp() {
89 return clockTimestamp;
90 }
91
92 public void setClockTimestamp(Timestamp clockTimestamp) {
93 this.clockTimestamp = clockTimestamp;
94 }
95
96 public String getClockAction() {
97 return clockAction;
98 }
99
100 public void setClockAction(String clockAction) {
101 this.clockAction = clockAction;
102 }
103
104 public String getIpAddress() {
105 return ipAddress;
106 }
107
108 public void setIpAddress(String ipAddress) {
109 this.ipAddress = ipAddress;
110 }
111
112 public String getUserPrincipalId() {
113 return userPrincipalId;
114 }
115
116 public void setUserPrincipalId(String userPrincipalId) {
117 this.userPrincipalId = userPrincipalId;
118 }
119
120 public Timestamp getTimestamp() {
121 return timestamp;
122 }
123
124 public void setTimestamp(Timestamp timestamp) {
125 this.timestamp = timestamp;
126 }
127
128 public String getClockTimestampTimezone() {
129 return clockTimestampTimezone;
130 }
131
132 public void setClockTimestampTimezone(String clockTimestampTimezone) {
133 this.clockTimestampTimezone = clockTimestampTimezone;
134 }
135
136
137
138
139
140 public String getNextValidClockAction() {
141 String ret;
142
143 if (this.getClockAction().equals(TkConstants.CLOCK_IN)) {
144 ret = TkConstants.CLOCK_OUT;
145 } else if (this.getClockAction().equals(TkConstants.CLOCK_OUT)) {
146 ret = TkConstants.CLOCK_IN;
147 } else if (this.getClockAction().equals(TkConstants.LUNCH_IN)) {
148 ret = TkConstants.LUNCH_OUT;
149 } else if (this.getClockAction().equals(TkConstants.LUNCH_OUT)) {
150 ret = TkConstants.LUNCH_IN;
151 } else {
152 ret = TkConstants.CLOCK_IN;
153 }
154
155 return ret;
156 }
157
158 public Job getJob() {
159 return job;
160 }
161
162 public void setJob(Job job) {
163 this.job = job;
164 }
165
166 public WorkArea getWorkAreaObj() {
167 return workAreaObj;
168 }
169
170 public void setWorkAreaObj(WorkArea workAreaObj) {
171 this.workAreaObj = workAreaObj;
172 }
173
174 public Task getTaskObj() {
175 return taskObj;
176 }
177
178 public void setTaskObj(Task taskObj) {
179 this.taskObj = taskObj;
180 }
181
182 public void setWorkArea(Long workArea) {
183 this.workArea = workArea;
184 }
185
186 public void setTask(Long task) {
187 this.task = task;
188 }
189 public Long getWorkArea() {
190 return workArea;
191 }
192 public Long getTask() {
193 return task;
194 }
195
196 public Person getPrincipal() {
197 return principal;
198 }
199
200 public void setPrincipal(Person principal) {
201 this.principal = principal;
202 }
203
204 public String getMissedPunchDocumentId() {
205 return missedPunchDocumentId;
206 }
207
208 public void setMissedPunchDocumentId(String missedPunchDocumentId) {
209 this.missedPunchDocumentId = missedPunchDocumentId;
210 }
211
212 public boolean getUnapprovedIP() {
213 return unapprovedIP;
214 }
215
216 public void setUnapprovedIP(boolean unapprovedIP) {
217 this.unapprovedIP = unapprovedIP;
218 }
219
220 }