com.ibm.websphere.soa.sca.wireformat

Interface WireFormatContext


  1. public interface WireFormatContext
The Interface WireFormatContext.

Nested Class Summary

Modifier and Type Interface and Description
  1. static class
WireFormatContext.EXCEPTION_TYPE
The Enum EXCEPTION_TYPE.
  1. static class
WireFormatContext.INVOCATION_TYPE
The Enum INVOCATION_TYPE.

Method Summary

Modifier and Type Method and Description
  1. java.lang.String
getComponent()
Gets the component.
  1. java.lang.Object
getCustomProperty(java.lang.Object key)
Gets the custom property.
  1. WireFormatContext.EXCEPTION_TYPE
getExceptionType()
Gets the exception type.
  1. WireFormatContext.INVOCATION_TYPE
getInvocationType()
Gets the invocation type of the current invocation.
  1. java.util.List<java.lang.String>
getOperationNames()
Gets the operation names.
  1. java.lang.String
getReference()
Gets the reference.
  1. java.lang.String
getSelectedOperationName()
Gets the selected operation name.
  1. java.lang.String
getService()
Gets the service.
  1. java.lang.String
getTargetOperationName()
Gets the target operation name.
  1. java.lang.Object
getTransformedData()
Gets the transformed data.
  1. WireFormatBindingContext
getWireFormatBindingContext()
Gets the wire format binding context.
  1. void
markBusinessException()
Mark business exception.
  1. void
markRuntimeException()
Mark runtime exception.
  1. void
setCustomProperty(java.lang.Object key,java.lang.Object value)
Sets the custom property.
  1. void
setTransformedData(java.lang.Object transformedData)
Sets the transformed data.

Method Detail

getInvocationType

  1. WireFormatContext.INVOCATION_TYPE getInvocationType( )
Gets the invocation type of the current invocation.
Returns:
the invocation type

getExceptionType

  1. WireFormatContext.EXCEPTION_TYPE getExceptionType( )
Gets the exception type.
Returns:
the exception type or null if the invocation type is not INVOCATION_TYPE.EXCEPTION

getComponent

  1. java.lang.String getComponent()
Gets the component.
Returns:
the component

getReference

  1. java.lang.String getReference()
Gets the reference.
Returns:
the reference

getService

  1. java.lang.String getService()
Gets the service.
Returns:
the service

getOperationNames

  1. java.util.List<java.lang.String> getOperationNames( )
Gets the operation names.
Returns:
the operation names

getSelectedOperationName

  1. java.lang.String getSelectedOperationName( )
Gets the selected operation name.
Returns:
the selected operation name

getTargetOperationName

  1. java.lang.String getTargetOperationName( )
Gets the target operation name.
Returns:
the target operation name

getTransformedData

  1. java.lang.Object getTransformedData( )
Gets the transformed data.
Returns:
the transformed data

setTransformedData

  1. void setTransformedData(java.lang.Object transformedData)
Sets the transformed data.
Parameters:
transformedData - the new transformed data

getCustomProperty

  1. java.lang.Object getCustomProperty( java.lang.Object key)
Gets the custom property.
Parameters:
key - the key
Returns:
the custom property

setCustomProperty

  1. void setCustomProperty(java.lang.Object key,
  2. java.lang.Object value)
Sets the custom property.
Parameters:
key - the key
value - the value

getWireFormatBindingContext

  1. WireFormatBindingContext getWireFormatBindingContext( )
Gets the wire format binding context.
Returns:
the wire format binding context

markBusinessException

  1. void markBusinessException()
Mark business exception.

markRuntimeException

  1. void markRuntimeException()
Mark runtime exception.