com.ibm.websphere.soa.sca.wireformat
Interface WireFormatContext
- public interface WireFormatContext
Nested Class Summary
Modifier and Type | Interface and Description |
---|---|
|
WireFormatContext.EXCEPTION_TYPE
The Enum EXCEPTION_TYPE.
|
|
WireFormatContext.INVOCATION_TYPE
The Enum INVOCATION_TYPE.
|
Method Summary
Modifier and Type | Method and Description |
---|---|
|
getComponent()
Gets the component.
|
|
getCustomProperty(java.lang.Object key)
Gets the custom property.
|
getExceptionType()
Gets the exception type.
|
|
getInvocationType()
Gets the invocation type of the current invocation.
|
|
|
getOperationNames()
Gets the operation names.
|
|
getReference()
Gets the reference.
|
|
getSelectedOperationName()
Gets the selected operation name.
|
|
getService()
Gets the service.
|
|
getTargetOperationName()
Gets the target operation name.
|
|
getTransformedData()
Gets the transformed data.
|
getWireFormatBindingContext()
Gets the wire format binding context.
|
|
|
markBusinessException()
Mark business exception.
|
|
markRuntimeException()
Mark runtime exception.
|
|
setCustomProperty(java.lang.Object key,java.lang.Object value)
Sets the custom property.
|
|
setTransformedData(java.lang.Object transformedData)
Sets the transformed data.
|
Method Detail
getInvocationType
- WireFormatContext.INVOCATION_TYPE getInvocationType( )
Gets the invocation type of the current invocation.
Returns:
the invocation type
getExceptionType
- WireFormatContext.EXCEPTION_TYPE getExceptionType( )
Gets the exception type.
Returns:
the exception type or
null
if the invocation type is not INVOCATION_TYPE.EXCEPTION
getComponent
- java.lang.String getComponent()
Gets the component.
Returns:
the component
getReference
- java.lang.String getReference()
Gets the reference.
Returns:
the reference
getService
- java.lang.String getService()
Gets the service.
Returns:
the service
getOperationNames
- java.util.List<java.lang.String> getOperationNames( )
Gets the operation names.
Returns:
the operation names
getSelectedOperationName
- java.lang.String getSelectedOperationName( )
Gets the selected operation name.
Returns:
the selected operation name
getTargetOperationName
- java.lang.String getTargetOperationName( )
Gets the target operation name.
Returns:
the target operation name
getTransformedData
- java.lang.Object getTransformedData( )
Gets the transformed data.
Returns:
the transformed data
setTransformedData
- void setTransformedData(java.lang.Object transformedData)
Sets the transformed data.
Parameters:
transformedData
- the new transformed data getCustomProperty
- java.lang.Object getCustomProperty( java.lang.Object key)
Gets the custom property.
Parameters:
key
- the key Returns:
the custom property
setCustomProperty
- void setCustomProperty(java.lang.Object key,
- java.lang.Object value)
Sets the custom property.
Parameters:
key
- the key value
- the value getWireFormatBindingContext
- WireFormatBindingContext getWireFormatBindingContext( )
Gets the wire format binding context.
Returns:
the wire format binding context
markBusinessException
- void markBusinessException()
Mark business exception.
markRuntimeException
- void markRuntimeException()
Mark runtime exception.