Package ai.nexconn.chat.channel.model
Class CommunitySubChannelIdentifier
-
- All Implemented Interfaces:
public final class CommunitySubChannelIdentifier extends ChannelIdentifier
Community channel identifier.
Used for unique Identifier a community channel and its sub-channel, Contains channel ID and sub-channel ID. Channel type fixed ChannelType.COMMUNITY. Inherits from ChannelIdentifier. channelId).
Usage Example:
val identifier = CommunitySubChannelIdentifier("communityId", "subChannelId")
-
-
Field Summary
Fields Modifier and Type Field Description private final StringsubChannelIdprivate final ChannelTypechannelTypeprivate final StringchannelId
-
Constructor Summary
Constructors Constructor Description CommunitySubChannelIdentifier(String channelId, String subChannelId)
-
Method Summary
Modifier and Type Method Description final StringgetSubChannelId()Booleanequals(Object other)IntegerhashCode()StringtoString()-
-
Method Detail
-
getSubChannelId
final String getSubChannelId()
-
equals
Boolean equals(Object other)
-
hashCode
Integer hashCode()
-
toString
String toString()
-
-
-
-