001
002 package org.oasis_open.docs.wsn.b_2;
003
004 import javax.xml.bind.annotation.XmlAccessType;
005 import javax.xml.bind.annotation.XmlAccessorType;
006 import javax.xml.bind.annotation.XmlElement;
007 import javax.xml.bind.annotation.XmlType;
008 import javax.xml.datatype.XMLGregorianCalendar;
009 import org.oasis_open.docs.wsrf.bf_2.BaseFaultType;
010
011
012 /**
013 * <p>Java class for UnacceptableTerminationTimeFaultType complex type.
014 *
015 * <p>The following schema fragment specifies the expected content contained within this class.
016 *
017 * <pre>
018 * <complexType name="UnacceptableTerminationTimeFaultType">
019 * <complexContent>
020 * <extension base="{http://docs.oasis-open.org/wsrf/bf-2}BaseFaultType">
021 * <sequence>
022 * <element name="MinimumTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
023 * <element name="MaximumTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
024 * </sequence>
025 * </extension>
026 * </complexContent>
027 * </complexType>
028 * </pre>
029 *
030 *
031 */
032 @XmlAccessorType(XmlAccessType.FIELD)
033 @XmlType(name = "UnacceptableTerminationTimeFaultType", propOrder = {
034 "minimumTime",
035 "maximumTime"
036 })
037 public class UnacceptableTerminationTimeFaultType
038 extends BaseFaultType
039 {
040
041 @XmlElement(name = "MinimumTime", required = true)
042 protected XMLGregorianCalendar minimumTime;
043 @XmlElement(name = "MaximumTime")
044 protected XMLGregorianCalendar maximumTime;
045
046 /**
047 * Gets the value of the minimumTime property.
048 *
049 * @return
050 * possible object is
051 * {@link XMLGregorianCalendar }
052 *
053 */
054 public XMLGregorianCalendar getMinimumTime() {
055 return minimumTime;
056 }
057
058 /**
059 * Sets the value of the minimumTime property.
060 *
061 * @param value
062 * allowed object is
063 * {@link XMLGregorianCalendar }
064 *
065 */
066 public void setMinimumTime(XMLGregorianCalendar value) {
067 this.minimumTime = value;
068 }
069
070 /**
071 * Gets the value of the maximumTime property.
072 *
073 * @return
074 * possible object is
075 * {@link XMLGregorianCalendar }
076 *
077 */
078 public XMLGregorianCalendar getMaximumTime() {
079 return maximumTime;
080 }
081
082 /**
083 * Sets the value of the maximumTime property.
084 *
085 * @param value
086 * allowed object is
087 * {@link XMLGregorianCalendar }
088 *
089 */
090 public void setMaximumTime(XMLGregorianCalendar value) {
091 this.maximumTime = value;
092 }
093
094 }