public class OperationType extends Object
Java 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>
| Modifier and Type | Field and Description |
|---|---|
protected ArgType |
_return |
protected String |
name |
protected List<ParamType> |
param |
protected List<RaisesType> |
raises |
| Constructor and Description |
|---|
OperationType() |
| Modifier and Type | Method and Description |
|---|---|
String |
getName()
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.
|
ArgType |
getReturn()
Gets the value of the return property.
|
boolean |
isSetName() |
boolean |
isSetParam() |
boolean |
isSetRaises() |
boolean |
isSetReturn() |
void |
setName(String value)
Sets the value of the name property.
|
void |
setReturn(ArgType value)
Sets the value of the return property.
|
void |
unsetParam() |
void |
unsetRaises() |
protected ArgType _return
protected List<RaisesType> raises
protected String name
public List<ParamType> getParam()
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
ParamType
public boolean isSetParam()
public void unsetParam()
public ArgType getReturn()
ArgTypepublic void setReturn(ArgType value)
value - allowed object is
ArgTypepublic boolean isSetReturn()
public List<RaisesType> getRaises()
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
RaisesType
public boolean isSetRaises()
public void unsetRaises()
public String getName()
Stringpublic void setName(String value)
value - allowed object is
Stringpublic boolean isSetName()
Apache CXF