package org.cagrid.cds.model; import java.io.Serializable; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ProxyLifetime complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ProxyLifetime"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="hours" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="minutes" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="seconds" type="{http://www.w3.org/2001/XMLSchema}int"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProxyLifetime", propOrder = { "hours", "minutes", "seconds" }) public class ProxyLifetime implements Serializable { protected int hours; protected int minutes; protected int seconds; /** * Gets the value of the hours property. * */ public int getHours() { return hours; } /** * Sets the value of the hours property. * */ public void setHours(int value) { this.hours = value; } /** * Gets the value of the minutes property. * */ public int getMinutes() { return minutes; } /** * Sets the value of the minutes property. * */ public void setMinutes(int value) { this.minutes = value; } /** * Gets the value of the seconds property. * */ public int getSeconds() { return seconds; } /** * Sets the value of the seconds property. * */ public void setSeconds(int value) { this.seconds = value; } }