add getter method for channel and channelName fields

This commit is contained in:
Jeff Mesnil 2015-04-28 16:44:38 +02:00
parent 9843f5f317
commit 0648d47e34
1 changed files with 10 additions and 0 deletions

View File

@ -30,6 +30,16 @@ public class ChannelBroadcastEndpointFactory implements BroadcastEndpointFactory
this.channelName = channelName;
}
public JChannel getChannel()
{
return channel;
}
public String getChannelName()
{
return channelName;
}
@Override
public BroadcastEndpoint createBroadcastEndpoint() throws Exception
{