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