View Javadoc

1   /**
2    * Copyright 2004-2013 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.hr.time.mobile.service;
17  
18  import java.io.Serializable;
19  import java.sql.Timestamp;
20  import java.util.ArrayList;
21  import java.util.HashMap;
22  import java.util.List;
23  import java.util.Map;
24  
25  public class ClockEntryInfo implements Serializable{
26  
27  	/**
28  	 * 
29  	 */
30  	private static final long serialVersionUID = 7132787403000141501L;
31  
32  	private Timestamp currentTime;
33  	
34  	private Map<String, String> assignKeyToAssignmentDescriptions = new HashMap<String,String>();
35  	private String lastClockLogDescription;
36  	private List<String> clockActions = new ArrayList<String>();
37  	
38  	public Map<String, String> getAssignKeyToAssignmentDescriptions() {
39  		return assignKeyToAssignmentDescriptions;
40  	}
41  	public void setAssignKeyToAssignmentDescriptions(
42  			Map<String, String> assignKeyToAssignmentDescriptions) {
43  		this.assignKeyToAssignmentDescriptions = assignKeyToAssignmentDescriptions;
44  	}
45  	public String getLastClockLogDescription() {
46  		return lastClockLogDescription;
47  	}
48  	public void setLastClockLogDescription(String lastClockLogDescription) {
49  		this.lastClockLogDescription = lastClockLogDescription;
50  	}
51  	public List<String> getClockActions() {
52  		return clockActions;
53  	}
54  	public void setClockActions(List<String> clockActions) {
55  		this.clockActions = clockActions;
56  	}
57  	public Timestamp getCurrentTime() {
58  		return currentTime;
59  	}
60  	public void setCurrentTime(Timestamp currentTime) {
61  		this.currentTime = currentTime;
62  	}
63  }