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

org.apache.cxf.binding.corba.wsdl.OperationType 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, vhudson-jaxb-ri-2.1-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2014.04.08 at 05:38:19 PM MDT 
//


package org.apache.cxf.binding.corba.wsdl;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import org.apache.cxf.wsdl.TExtensibilityElementImpl;


/**
 * CORBA Operation Type
 * 
 * 

Java class for operationType complex type. * *

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

 * <complexType name="operationType">
 *   <complexContent>
 *     <extension base="{http://schemas.xmlsoap.org/wsdl/}tExtensibilityElement">
 *       <sequence>
 *         <element name="param" type="{http://cxf.apache.org/bindings/corba}paramType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="return" type="{http://cxf.apache.org/bindings/corba}argType" minOccurs="0"/>
 *         <element name="raises" type="{http://cxf.apache.org/bindings/corba}raisesType" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "operationType", propOrder = { "param", "_return", "raises" }) public class OperationType extends TExtensibilityElementImpl { protected List param; @XmlElement(name = "return") protected ArgType _return; protected List raises; @XmlAttribute(name = "name", required = true) protected String name; /** * Gets the value of the param property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the param property. * *

* For example, to add a new item, do as follows: *

     *    getParam().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ParamType } * * */ public List getParam() { if (param == null) { param = new ArrayList(); } return this.param; } public boolean isSetParam() { return ((this.param!= null)&&(!this.param.isEmpty())); } public void unsetParam() { this.param = null; } /** * Gets the value of the return property. * * @return * possible object is * {@link ArgType } * */ public ArgType getReturn() { return _return; } /** * Sets the value of the return property. * * @param value * allowed object is * {@link ArgType } * */ public void setReturn(ArgType value) { this._return = value; } public boolean isSetReturn() { return (this._return!= null); } /** * Gets the value of the raises property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the raises property. * *

* For example, to add a new item, do as follows: *

     *    getRaises().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link RaisesType } * * */ public List getRaises() { if (raises == null) { raises = new ArrayList(); } return this.raises; } public boolean isSetRaises() { return ((this.raises!= null)&&(!this.raises.isEmpty())); } public void unsetRaises() { this.raises = null; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } public boolean isSetName() { return (this.name!= null); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy