-
- All Implemented Interfaces:
-
ai.tock.bot.connector.ConnectorMessage,ai.tock.bot.connector.ConnectorMessageProvider
public interface SerializableConnectorMessage implements ConnectorMessage
A json serializable ConnectorMessage. For a Connector implementation, implementing this interface for all of its ConnectorMessage types is prerequisite in order to support bot orchestration.
-
-
Method Summary
Modifier and Type Method Description abstract ConnectorTypegetConnectorType()The connector type. -
Methods inherited from class ai.tock.bot.connector.SerializableConnectorMessage
obfuscate, toConnectorMessage, toGenericMessage -
Methods inherited from class ai.tock.bot.connector.ConnectorMessageProvider
equals, hashCode, toString -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getConnectorType
abstract ConnectorType getConnectorType()
The connector type.
-
-
-
-