public interface JavaMethod
Method
of a SEI.Modifier and Type | Method and Description |
---|---|
SOAPBinding |
getBinding()
Binding object - a
SOAPBinding isntance. |
MEP |
getMEP() |
Method |
getMethod()
On the server side, it uses this for invocation of the web service
|
String |
getOperationName()
Gives the wsdl:operation@name value
|
SEIModel |
getOwner()
Gets the root
SEIModel that owns this model. |
String |
getRequestMessageName()
Gives the request wsdl:message@name value
|
QName |
getRequestPayloadName()
Gives soap:Body's first child's name for request message.
|
String |
getResponseMessageName()
Gives the response wsdl:messageName value
|
QName |
getResponsePayloadName()
Gives soap:Body's first child's name for response message.
|
Method |
getSEIMethod()
This should be used if you want to access annotations on WebMethod
Returns the SEI method if there is one.
|
@NotNull Method getMethod()
@WebService
(endpointInterface="I")
class A { }
In this case, it retuns A's method
@WebService
(endpointInterface="I")
class A implements I { }
In this case, it returns A's method
@WebService
class A { }
In this case, it returns A's method
Method
@NotNull Method getSEIMethod()
@WebService
(endpointInterface="I")
class A { }
In this case, it retuns I's method
@WebService
(endpointInterface="I")
class A implements I { }
In this case, it returns I's method
@WebService
class A { }
In this case, it returns A's method
Method
SOAPBinding getBinding()
SOAPBinding
isntance.@NotNull String getOperationName()
@NotNull String getRequestMessageName()
@Nullable String getResponseMessageName()
MEP.isOneWay()
@Nullable QName getRequestPayloadName()
@Nullable QName getResponsePayloadName()
Copyright © 2015 Oracle Corporation. All rights reserved.