package org.cagrid.gts.service.impl; /** * @author <A href="mailto:langella@bmi.osu.edu">Stephen Langella </A> * @author <A href="mailto:oster@bmi.osu.edu">Scott Oster </A> * @author <A href="mailto:hastings@bmi.osu.edu">Shannon Hastings </A> * @version $Id: ArgumentManagerTable.java,v 1.2 2004/10/15 16:35:16 langella * Exp $ */ public class AuthoritySyncTime { private int hours; private int minutes; private int seconds; public AuthoritySyncTime(int hours, int minutes, int seconds) { this.hours = hours; this.minutes = minutes; this.seconds = seconds; } public int getHours() { return hours; } public int getMinutes() { return minutes; } public int getSeconds() { return seconds; } }