public interface Parameter
WrapperParameter
is used.Modifier and Type | Method and Description |
---|---|
ParameterBinding |
getBinding()
Returns the binding associated with the parameter.
|
com.sun.xml.bind.api.Bridge |
getBridge()
Deprecated.
|
Object |
getHolderValue(Object obj)
Gets the holder value if applicable.
|
ParameterBinding |
getInBinding()
Returns the
ParameterBinding associated with the IN mode |
int |
getIndex()
Position of a parameter in the method signature.
|
javax.jws.WebParam.Mode |
getMode() |
QName |
getName() |
ParameterBinding |
getOutBinding()
Returns the
ParameterBinding associated with the OUT mode |
SEIModel |
getOwner()
Gets the root
SEIModel that owns this model. |
JavaMethod |
getParent()
Gets the parent
JavaMethod to which this parameter belongs. |
String |
getPartName()
Gives the wsdl:part@name value
|
boolean |
isIN() |
boolean |
isINOUT() |
boolean |
isOUT() |
boolean |
isResponse()
If true, this parameter maps to the return value of a method invocation.
|
boolean |
isReturnValue()
Returns true if this parameter is bound to the return value from the
JavaMethod . |
boolean |
isWrapperStyle() |
JavaMethod getParent()
JavaMethod
to which this parameter belongs.com.sun.xml.bind.api.Bridge getBridge()
Bridge
associated with this Parameterjavax.jws.WebParam.Mode getMode()
int getIndex()
boolean isWrapperStyle()
WrapperParameter
.boolean isReturnValue()
JavaMethod
.
Just the convenience method for getIndex()==-1
ParameterBinding getBinding()
getInBinding()
, for OUT parameter the binding will be same as
getOutBinding()
and for INOUT parameter the binding will be same as calling
getInBinding()
ParameterBinding.BODY
by default.ParameterBinding getInBinding()
ParameterBinding
associated with the IN modeParameterBinding getOutBinding()
ParameterBinding
associated with the OUT modeboolean isIN()
WebParam.Mode
associated with the parameter is WebParam.Mode.IN
and false otherwise.boolean isOUT()
WebParam.Mode
associated with the parameter is WebParam.Mode.OUT
and false otherwise.boolean isINOUT()
WebParam.Mode
associated with the parameter is WebParam.Mode.INOUT
and false otherwise.boolean isResponse()
Object getHolderValue(Object obj)
obj
- String getPartName()
WebParam.partName()
annotation if present,
otherwise its the localname of the infoset associated with the parameterCopyright (c) 1997-2012 Oracle and/or its affiliates. All rights reserved.