View Javadoc
1   /**
2    * Copyright 2004-2014 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.kpme.tklm.time.clocklog;
17  
18  import java.util.Date;
19  import java.util.Map;
20  
21  public class RemoteClockLog {
22  
23      private Map<String, String> cardData;
24      private String principalId;
25      private String position;
26      private Long clockLogTimestamp;
27      private boolean fromQueue;
28      // not from JSON
29      private Date clockLog;
30  
31      public Map<String, String> getCardData() {
32          return cardData;
33      }
34  
35      public void setCardData(Map<String, String> cardData) {
36          this.cardData = cardData;
37      }
38  
39      public String getPrincipalId() {
40          return principalId;
41      }
42  
43      public void setPrincipalId(String principalId) {
44          this.principalId = principalId;
45      }
46  
47      public String getPosition() {
48          return position;
49      }
50  
51      public void setPosition(String position) {
52          this.position = position;
53      }
54  
55      public Long getClockLogTimestamp() {
56          return clockLogTimestamp;
57      }
58  
59      public void setClockLogTimestamp(Long clockLogTimestamp) {
60          this.clockLogTimestamp = clockLogTimestamp;
61      }
62  
63      public Date getClockLog() {
64          return clockLog;
65      }
66  
67      public void setClockLog(Date clockLog) {
68          this.clockLog = clockLog;
69      }
70  
71      public boolean isFromQueue() {
72          return fromQueue;
73      }
74  
75      public void setFromQueue(boolean fromQueue) {
76          this.fromQueue = fromQueue;
77      }
78  
79  }