|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface JavaMethod
Abstracts the annotated Method
of a SEI.
Method Summary | |
---|---|
SOAPBinding |
getBinding()
Binding object - a SOAPBinding isntance. |
MEP |
getMEP()
|
java.lang.reflect.Method |
getMethod()
On the server side, it uses this for invocation of the web service |
java.lang.String |
getOperationName()
Gives the wsdl:operation@name value |
SEIModel |
getOwner()
Gets the root SEIModel that owns this model. |
java.lang.String |
getRequestMessageName()
Gives the request wsdl:message@name value |
javax.xml.namespace.QName |
getRequestPayloadName()
Gives soap:Body's first child's name for request message. |
java.lang.String |
getResponseMessageName()
Gives the response wsdl:messageName value |
javax.xml.namespace.QName |
getResponsePayloadName()
Gives soap:Body's first child's name for response message. |
java.lang.reflect.Method |
getSEIMethod()
This should be used if you want to access annotations on WebMethod Returns the SEI method if there is one. |
Method Detail |
---|
SEIModel getOwner()
SEIModel
that owns this model.
@NotNull java.lang.reflect.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 java.lang.reflect.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
MEP getMEP()
MEP
.SOAPBinding getBinding()
SOAPBinding
isntance.
@NotNull java.lang.String getOperationName()
@NotNull java.lang.String getRequestMessageName()
@Nullable java.lang.String getResponseMessageName()
MEP.isOneWay()
@Nullable javax.xml.namespace.QName getRequestPayloadName()
@Nullable javax.xml.namespace.QName getResponsePayloadName()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |