com.ibm.websphere.sca.scdl
Interface OperationType
- public interface OperationType
Field Summary
Modifier and Type | Field and Description |
---|---|
|
COPYRIGHT
|
|
MULTIPART_TYPE
Used to indicate a Multipart type.
|
Method Summary
Modifier and Type | Method and Description |
---|---|
|
getExceptionType(java.lang.String uri,java.lang.String name)
Returns an SDO type describing the named exception type.
|
|
getExceptionTypes()
Returns the list of SDO types describing the exceptions that can be thrown by the operation.
|
|
getInputType()
Returns the SDO type describing the operation input type.
|
|
getName()
Returns the operation name.
|
|
getOutputType()
Returns the SDO type describing the operation output type.
|
|
isWrapperType(commonj.sdo.Type type)
Returns true if the given type represents a wrapper for the parameters to the operation.
|
Field Detail
COPYRIGHT
- static final java.lang.String COPYRIGHT
See Also:
MULTIPART_TYPE
- static final commonj.sdo.Type MULTIPART_TYPE
Used to indicate a Multipart type. Types that extend the Multipart type represent wrappers for multiple WSDL parts or parameters on a java method.
Method Detail
getName
- java.lang.String getName()
Returns the operation name.
Returns:
The operation name.
getInputType
- commonj.sdo.Type getInputType()
Returns the SDO type describing the operation input type.
Returns:
The operation input type.
getOutputType
- commonj.sdo.Type getOutputType( )
Returns the SDO type describing the operation output type.
Returns:
The operation output type.
getExceptionTypes
- java.util.List getExceptionTypes( )
Returns the list of SDO types describing the exceptions that can be thrown by the operation.
Returns:
the List of SDO types describing the exceptions thrown by the operation.
getExceptionType
- commonj.sdo.Type getExceptionType( java.lang.String uri,
- java.lang.String name)
Returns an SDO type describing the named exception type.
Parameters:
uri
- The namespace URI of the exception type. name
- The name of the exception type. Returns:
The SDO type describing the exception.
isWrapperType
- boolean isWrapperType(commonj.sdo.Type type)
Returns true if the given type represents a wrapper for the parameters to the operation.
Parameters:
type
- The SDO type. Returns:
True if the given type represents a wrapper for multiple parameters.