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 UnacceptableInitialTerminationTimeFaultType complex type.
014     * 
015     * <p>The following schema fragment specifies the expected content contained within this class.
016     * 
017     * <pre>
018     * &lt;complexType name="UnacceptableInitialTerminationTimeFaultType">
019     *   &lt;complexContent>
020     *     &lt;extension base="{http://docs.oasis-open.org/wsrf/bf-2}BaseFaultType">
021     *       &lt;sequence>
022     *         &lt;element name="MinimumTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
023     *         &lt;element name="MaximumTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
024     *       &lt;/sequence>
025     *     &lt;/extension>
026     *   &lt;/complexContent>
027     * &lt;/complexType>
028     * </pre>
029     * 
030     * 
031     */
032    @XmlAccessorType(XmlAccessType.FIELD)
033    @XmlType(name = "UnacceptableInitialTerminationTimeFaultType", propOrder = {
034        "minimumTime",
035        "maximumTime"
036    })
037    public class UnacceptableInitialTerminationTimeFaultType
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    }