com.ef.cim.objectmodel.ChannelMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of objectmodel Show documentation
Show all versions of objectmodel Show documentation
This dependency contains object model classes for expert flow's CIM project
package com.ef.cim.objectmodel;
/**
* A {@code ChannelMode} enum represents all the possible modes a channel can have. A channel can
* have one of the three modes: BOT, AGENT, HYBRID
*/
public enum ChannelMode {
BOT,
AGENT,
HYBRID
}