All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.cxf.ws.rm.manager.DeliveryAssuranceType Maven / Gradle / Ivy

There is a newer version: 3.0.0-milestone2
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2009.02.05 at 01:59:18 PM EST 
//


package org.apache.cxf.ws.rm.manager;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import org.apache.cxf.ws.rm.manager.DeliveryAssuranceType.AtLeastOnce;
import org.apache.cxf.ws.rm.manager.DeliveryAssuranceType.AtMostOnce;
import org.apache.cxf.ws.rm.manager.DeliveryAssuranceType.InOrder;


/**
 * 

Java class for DeliveryAssuranceType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="DeliveryAssuranceType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="AtMostOnce" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="AtLeastOnce" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="InOrder" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DeliveryAssuranceType", propOrder = { "atMostOnce", "atLeastOnce", "inOrder" }) public class DeliveryAssuranceType { @XmlElement(name = "AtMostOnce", namespace = "http://cxf.apache.org/ws/rm/manager") protected AtMostOnce atMostOnce; @XmlElement(name = "AtLeastOnce", namespace = "http://cxf.apache.org/ws/rm/manager") protected AtLeastOnce atLeastOnce; @XmlElement(name = "InOrder", namespace = "http://cxf.apache.org/ws/rm/manager") protected InOrder inOrder; /** * Gets the value of the atMostOnce property. * * @return * possible object is * {@link AtMostOnce } * */ public AtMostOnce getAtMostOnce() { return atMostOnce; } /** * Sets the value of the atMostOnce property. * * @param value * allowed object is * {@link AtMostOnce } * */ public void setAtMostOnce(AtMostOnce value) { this.atMostOnce = value; } public boolean isSetAtMostOnce() { return (this.atMostOnce!= null); } /** * Gets the value of the atLeastOnce property. * * @return * possible object is * {@link AtLeastOnce } * */ public AtLeastOnce getAtLeastOnce() { return atLeastOnce; } /** * Sets the value of the atLeastOnce property. * * @param value * allowed object is * {@link AtLeastOnce } * */ public void setAtLeastOnce(AtLeastOnce value) { this.atLeastOnce = value; } public boolean isSetAtLeastOnce() { return (this.atLeastOnce!= null); } /** * Gets the value of the inOrder property. * * @return * possible object is * {@link InOrder } * */ public InOrder getInOrder() { return inOrder; } /** * Sets the value of the inOrder property. * * @param value * allowed object is * {@link InOrder } * */ public void setInOrder(InOrder value) { this.inOrder = value; } public boolean isSetInOrder() { return (this.inOrder!= null); } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class AtLeastOnce { } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class AtMostOnce { } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class InOrder { } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy