Interface ChannelProtocolAdapter<O,I,CO,CI>
- Type Parameters:
O- the output type from the underlying machine/platformI- the input type to the underlying machine/platformCO- the output type of the connectorCI- the input type of the connector
- All Superinterfaces:
ProtocolAdapter<O,I, CO, CI>
- All Known Implementing Classes:
ChannelTranslatingProtocolAdapter
Adapts a channeled protocol from/to an underlying machine/platform.
- Author:
- Holger Eichelberger, SSE
-
Method Summary
Modifier and TypeMethodDescriptionReturns the name of the input channel.Returns the name of the output channel.Methods inherited from interface de.iip_ecosphere.platform.connectors.types.ProtocolAdapter
adaptInput, adaptOutput, getConnectorInputType, getConnectorOutputType, getModelAccess, getProtocolInputType, getProtocolOutputType, initializeModelAccess, setModelAccess
-
Method Details
-
getInputChannel
String getInputChannel()Returns the name of the input channel. Further semantics is implied/restrictions are imposed by the underlying protocol.- Returns:
- the name of the input channel
-
getOutputChannel
String getOutputChannel()Returns the name of the output channel. Further semantics is implied/restrictions are imposed by the underlying protocol.- Returns:
- the name of the output channel
-