Interface MessengerAccount
-
- All Superinterfaces:
java.lang.Comparable<com.novomind.ecom.common.api.persistence.Entity>
,com.novomind.ecom.common.api.persistence.Entity
,MasterEntity
,com.novomind.ecom.common.api.attribute.Named
,StorageProvider
,TenantProvider
public interface MessengerAccount extends MasterEntity, com.novomind.ecom.common.api.attribute.Named, StorageProvider, TenantProvider
Represents a messenger account- Since:
- 12.20
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ChatChannel
getChannel()
java.lang.String
getProtocol()
boolean
isEnabled()
Returns the enabled status-
Methods inherited from interface com.novomind.ecom.common.api.persistence.Entity
compareTo, getId, isDeleted, isNotDeleted
-
Methods inherited from interface com.novomind.ecom.api.iagent.provider.StorageProvider
getStorage
-
Methods inherited from interface com.novomind.ecom.api.iagent.provider.TenantProvider
getTenant
-
-
-
-
Method Detail
-
getChannel
ChatChannel getChannel()
- Returns:
- the ChatChannel of the messenger account.
- Since:
- 12.20
-
isEnabled
boolean isEnabled()
Returns the enabled status- Returns:
- true if messenger account is enabled otherwise false
- Since:
- 12.20
-
getProtocol
java.lang.String getProtocol()
- Returns:
- the protocol of the messenger account
- Since:
- 12.20
-
-