*/
public void activateChannel( Channel channel ) throws UnknownChannelException
{
ChannelWrapper cw = mChannelMap.get( channel.getId() );
if( cw == null )
throw new UnknownChannelException( "Channel with the id " + channel.getId() + " not as active found!" );
cw.setActive();
sfLogger.log( Level.INFO, String.format( "Activated channel with the id: %d, name: %s", cw.mfChannel.getId(),
channel.getId(), channel.getName() ), channel );
}