|
WebObjects 5.4.2 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.webobjects.webservices.client.WOClientOperation
public class WOClientOperation
A WOClientOperation represents a single SOAP HTTP Web service operation as defined in the WSDL document used to create a WOWebServiceClient.
Method Summary | |
---|---|
URL |
endpoint()
Returns the URL at which the service is being vended. |
boolean |
isDocumentStyle()
Return true if this is a document style operation (i.e., style is "document"). |
boolean |
isRPCStyle()
Return true if this is an RPC operation (i.e., style is "RPC"). |
String |
name()
Returns the name of the operation. |
NSMutableArray |
parameters()
Returns an NSMutableArray containing WOClientParameters for the parameters taken by this operation. |
NSMutableArray |
returnTypes()
Returns an NSMutableArray of WOClientParameters representing the types returned by the operation. |
void |
setSoapAction(String aString)
Set the HTTP SoapAction header to be used when invoking the operation. |
void |
setStyle(String aStyle)
Set the operation style to aStyle . |
String |
soapAction()
Returns the soapAction HTTP header to be used when invoking the operation. |
String |
style()
Returns a string denoting the style of SOAP operation represented by the receiver. |
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Method Detail |
---|
public NSMutableArray returnTypes()
ParameterMode
public String name()
public String soapAction()
public URL endpoint()
public NSMutableArray parameters()
invoke
; for a document style operation, there should be only one in parameter.
WOWebServiceClient.invoke(String serviceName, String operationName, Object[] parameters)
,
ParameterMode
public String style()
public void setStyle(String aStyle)
aStyle
. aStyle
must be one of "RPC" or
"document" (case insensitive).
aStyle
- String indicating the document stylepublic void setSoapAction(String aString)
String
- containing the header to be used when invoking the operationpublic boolean isRPCStyle()
true
if this is an RPC operation (i.e., style is "RPC").
true
if this is an RPC operationpublic boolean isDocumentStyle()
true
if this is a document style operation (i.e., style is "document").
true
if this is a document style operationpublic String toString()
toString
in class Object
|
Last updated June 2008 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |