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;/extension>
027     *   &lt;/complexContent>
028     * &lt;/complexType>
029     * </pre>
030     * 
031     * 
032     */
033    @XmlAccessorType(XmlAccessType.FIELD)
034    @XmlType(name = "UnacceptableTerminationTimeFaultType", propOrder = {
035        "minimumTime",
036        "maximumTime"
037    })
038    public class UnacceptableTerminationTimeFaultType
039        extends BaseFaultType
040    {
041    
042        @XmlElement(name = "MinimumTime", required = true)
043        @XmlSchemaType(name = "dateTime")
044        protected XMLGregorianCalendar minimumTime;
045        @XmlElement(name = "MaximumTime")
046        @XmlSchemaType(name = "dateTime")
047        protected XMLGregorianCalendar maximumTime;
048    
049        /**
050         * Gets the value of the minimumTime property.
051         * 
052         * @return
053         *     possible object is
054         *     {@link XMLGregorianCalendar }
055         *     
056         */
057        public XMLGregorianCalendar getMinimumTime() {
058            return minimumTime;
059        }
060    
061        /**
062         * Sets the value of the minimumTime property.
063         * 
064         * @param value
065         *     allowed object is
066         *     {@link XMLGregorianCalendar }
067         *     
068         */
069        public void setMinimumTime(XMLGregorianCalendar value) {
070            this.minimumTime = value;
071        }
072    
073        /**
074         * Gets the value of the maximumTime property.
075         * 
076         * @return
077         *     possible object is
078         *     {@link XMLGregorianCalendar }
079         *     
080         */
081        public XMLGregorianCalendar getMaximumTime() {
082            return maximumTime;
083        }
084    
085        /**
086         * Sets the value of the maximumTime property.
087         * 
088         * @param value
089         *     allowed object is
090         *     {@link XMLGregorianCalendar }
091         *     
092         */
093        public void setMaximumTime(XMLGregorianCalendar value) {
094            this.maximumTime = value;
095        }
096    
097    }