org.jibx.soap.server
Class OperationDefinition

java.lang.Object
  extended byorg.jibx.soap.server.OperationDefinition

public class OperationDefinition
extends java.lang.Object

Operation definition structure. This is populated from the XML service definition document by JiBX unmarshalling.

Version:
1.0
Author:
Dennis M. Sosnoski

Method Summary
 java.lang.Class getInputClass()
          Get input class information.
 java.lang.String getInputName()
          Get input message name.
 java.lang.reflect.Method getOperationMethod()
          Get operation method information.
 java.lang.String getOperationName()
          Get operation name.
 java.lang.Class getOutputClass()
          Get output class information.
 java.lang.String getOutputName()
          Get output message name.
 java.lang.String getSoapAction()
          Get SOAP action.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getSoapAction

public java.lang.String getSoapAction()
Get SOAP action.

Returns:
SOAP action

getOperationMethod

public java.lang.reflect.Method getOperationMethod()
Get operation method information.

Returns:
operation method information

getOperationName

public java.lang.String getOperationName()
Get operation name.

Returns:
operation name

getInputClass

public java.lang.Class getInputClass()
Get input class information.

Returns:
input class information

getInputName

public java.lang.String getInputName()
Get input message name.

Returns:
input message name

getOutputClass

public java.lang.Class getOutputClass()
Get output class information.

Returns:
output class information

getOutputName

public java.lang.String getOutputName()
Get output message name.

Returns:
output message name


Project Web Site