001 /** 002 * Copyright 2004-2013 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 package org.kuali.hr.time.mobile.service; 017 018 import java.io.Serializable; 019 import java.sql.Timestamp; 020 import java.util.ArrayList; 021 import java.util.HashMap; 022 import java.util.List; 023 import java.util.Map; 024 025 public class ClockEntryInfo implements Serializable{ 026 027 /** 028 * 029 */ 030 private static final long serialVersionUID = 7132787403000141501L; 031 032 private Timestamp currentTime; 033 034 private Map<String, String> assignKeyToAssignmentDescriptions = new HashMap<String,String>(); 035 private String lastClockLogDescription; 036 private List<String> clockActions = new ArrayList<String>(); 037 038 public Map<String, String> getAssignKeyToAssignmentDescriptions() { 039 return assignKeyToAssignmentDescriptions; 040 } 041 public void setAssignKeyToAssignmentDescriptions( 042 Map<String, String> assignKeyToAssignmentDescriptions) { 043 this.assignKeyToAssignmentDescriptions = assignKeyToAssignmentDescriptions; 044 } 045 public String getLastClockLogDescription() { 046 return lastClockLogDescription; 047 } 048 public void setLastClockLogDescription(String lastClockLogDescription) { 049 this.lastClockLogDescription = lastClockLogDescription; 050 } 051 public List<String> getClockActions() { 052 return clockActions; 053 } 054 public void setClockActions(List<String> clockActions) { 055 this.clockActions = clockActions; 056 } 057 public Timestamp getCurrentTime() { 058 return currentTime; 059 } 060 public void setCurrentTime(Timestamp currentTime) { 061 this.currentTime = currentTime; 062 } 063 }