Fields Summary |
---|
private String | mOperationNameOperation name. |
private String | mPatternPattern used by the operation. |
private String | mSoapActionOperation's SOAP action URI. |
private String | mOperationStyleStyle used to physically represent the operation message style. This is either
"rpc" style, "uri" style or "multipart" style. These styles are based on WSDL 2.0. |
private String | mInterfaceStyleStyle used to physically represent the operation message style. This is either
"rpc" style, "uri" style or "multipart" style. These styles are based on WSDL 2.0. |
private String | mInputNamespaceInput operation namespace. |
private String | mOutputNamespaceOutput operation namespace. |
Methods Summary |
---|
public java.lang.String | getInputNamespace()Gets the operation input namespace.
return mInputNamespace;
|
public java.lang.String | getName()Gets the operation name.
return mOperationName;
|
public java.lang.String | getOutputNamespace()Gets the operation output namespace.
return mOutputNamespace;
|
public java.lang.String | getPattern()Gets the message exchange pattern name.
return mPattern;
|
public java.lang.String | getSoapAction()Gets the soap Action URI.
return mSoapAction;
|
public java.lang.String | getStyle()Gets the operation style.
if (mOperationStyle != null)
{
return mOperationStyle;
}
else
{
return mInterfaceStyle;
}
|
public boolean | isInputEncoded()Indicates whether the operation input is encoded or not.
return false;
|
public boolean | isOutputEncoded()Indicates whether the operation output is encoded or not.
return false;
|
public void | setInputNamespace(java.lang.String namespace)Sets the operation input namespace.
mInputNamespace = namespace;
|
public void | setInterfaceStyle(java.lang.String style)Sets the interface style.
mInterfaceStyle = style;
|
public void | setOutputNamespace(java.lang.String namespace)Sets the operation output namespace.
mOutputNamespace = namespace;
|
public void | setSoapAction(java.lang.String soapAction)Sets the soap Action URI.
if ( ( soapAction != null) && ( !soapAction.equals("")) )
{
mSoapAction = soapAction;
}
|
public void | setStyle(java.lang.String operationStyle)Sets the operation style.
mOperationStyle = operationStyle;
|
public java.lang.String | toString()Returns the operation as a string.
StringBuffer buffer = new StringBuffer();
buffer.append("{ name = " + mOperationName);
buffer.append(", pattern = " + mPattern);
buffer.append(", style = " + getStyle());
buffer.append(", soap action = " + mSoapAction);
buffer.append(", input namespace = " + mInputNamespace);
buffer.append(", output namespace = " + mOutputNamespace);
buffer.append("}");
return buffer.toString();
|