Class OperationType
- java.lang.Object
-
- org.apache.cxf.binding.corba.wsdl.OperationType
-
public class OperationType extends Object
CORBA Operation TypeJava class for operationType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="operationType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <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" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description OperationType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()Gets the value of the name property.List<ParamType>getParam()Gets the value of the param property.List<RaisesType>getRaises()Gets the value of the raises property.ArgTypegetReturn()Gets the value of the return property.booleanisSetName()booleanisSetParam()booleanisSetRaises()booleanisSetReturn()voidsetName(String value)Sets the value of the name property.voidsetReturn(ArgType value)Sets the value of the return property.voidunsetParam()voidunsetRaises()
-
-
-
Method Detail
-
getParam
public List<ParamType> getParam()
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
setmethod 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
ParamType
-
isSetParam
public boolean isSetParam()
-
unsetParam
public void unsetParam()
-
getReturn
public ArgType getReturn()
Gets the value of the return property.- Returns:
- possible object is
ArgType
-
setReturn
public void setReturn(ArgType value)
Sets the value of the return property.- Parameters:
value- allowed object isArgType
-
isSetReturn
public boolean isSetReturn()
-
getRaises
public List<RaisesType> getRaises()
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
setmethod 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
RaisesType
-
isSetRaises
public boolean isSetRaises()
-
unsetRaises
public void unsetRaises()
-
getName
public String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(String value)
Sets the value of the name property.- Parameters:
value- allowed object isString
-
isSetName
public boolean isSetName()
-
-