com.ibm.wsspi.sibx.mediation
Interface MediationServices
- public interface MediationServices
Mediation primitives will primarily use the mediation services to access input and output terminals via the getter methods.
Field Summary
Modifier and Type | Field and Description |
---|---|
|
$sccsid
|
|
COPYRIGHT
|
Method Summary
Modifier and Type | Method and Description |
---|---|
getInputTerminal(java.lang.String name)
Gets the named input terminal for this primitive.
|
|
|
getInputTerminals()
Returns an unmodifiable list of all input terminals defined for this
mediation primitive.
|
|
getMediationDisplayName()
Gets the display name of this mediation primitive.
|
|
getMediationName()
Gets the name of this mediation primitive.
|
getOutputTerminal(java.lang.String name)
Gets the named output terminal for this primitive.
|
|
|
getOutputTerminals()
Returns an unmodifiable list of all output terminals defined for this
mediation primitive.
|
Field Detail
COPYRIGHT
- static final java.lang.String COPYRIGHT
See Also:
$sccsid
- static final java.lang.String $sccsid
See Also:
Method Detail
getMediationName
- java.lang.String getMediationName( )
Gets the name of this mediation primitive. This name is set by the
flow creation tooling.
Returns:
the name of the mediation primitive
getMediationDisplayName
- java.lang.String getMediationDisplayName( )
Gets the display name of this mediation primitive. This display name is
normally set by the user who created the flow.
Returns:
the display name of the mediation primitive
getInputTerminal
- InputTerminal getInputTerminal( java.lang.String name)
- throws TerminalNotFoundException
Gets the named input terminal for this primitive.
Parameters:
name
- the name of the input terminal Returns:
the input terminal
Throws:
TerminalNotFoundException
- if the named terminal is not defined
for this mediation primitive getOutputTerminal
- OutputTerminal getOutputTerminal( java.lang.String name)
- throws TerminalNotFoundException
Gets the named output terminal for this primitive.
Parameters:
name
- the name of the output terminal Returns:
the output terminal
Throws:
TerminalNotFoundException
- if the named terminal is not defined
for this mediation primitive getInputTerminals
- java.util.List getInputTerminals( )
Returns an unmodifiable list of all input terminals defined for this
mediation primitive.
Returns:
the list of input terminals
getOutputTerminals
- java.util.List getOutputTerminals( )
Returns an unmodifiable list of all output terminals defined for this
mediation primitive.
Returns:
the list of output terminals