Skip navigation links

Oracle Application Server
Web Services Java API Reference
10g Release 3 (10.1.3.1.0)

B28977-01


oracle.webservices
Interface WebServiceOperationInfo


public interface WebServiceOperationInfo

Implementations of this interface provide access to information about a web service operation.


Method Summary
 WebServiceEndpointInfo getEndpointInfo()
          Get the endpoint with which this operation is associated.
 String getInputName()
          Get the name of the input message for this operation.
 QName getInputType()
          Get the input message type.
 QName getOperationName()
          Get the name of the operation.
 String getOutputName()
          Get the name of the output message for this operation.
 String getUse()
          Get the "use" for this operation.
 void setUse(String use)
          Set the "use" for this operation.

 

Method Detail

getEndpointInfo

WebServiceEndpointInfo getEndpointInfo()
Get the endpoint with which this operation is associated.
Returns:
The WebServiceEndpointInfo instance corresponding to this operation.

getOperationName

QName getOperationName()
Get the name of the operation.
Returns:
The QName of the operation as defined in the WSDL definition.

getInputName

String getInputName()
Get the name of the input message for this operation.
Returns:
The input message name.

getOutputName

String getOutputName()
Get the name of the output message for this operation.
Returns:
The output message name.

getInputType

QName getInputType()
Get the input message type.
Returns:
The QName of the input message type as defined by the WSDL definition.

getUse

String getUse()
Get the "use" for this operation.
Returns:
The use value; either "literal" or "encoded".

setUse

void setUse(String use)
Set the "use" for this operation.
Parameters:
use - Either "literal" or "encoded".

Skip navigation links

Copyright © 2006, Oracle. All Rights Reserved.