com.sun.media.jsdt
Interface ChannelManager


public abstract interface ChannelManager
extends JSDTManager

The Channel Manager interface.

Since:
JSDT 1.0
Version:
1.5 - 7th January 1999
Author:
Rich Burridge

Fields inherited from class java.io.Serializable
serialVersionUID
 
Method Summary
 boolean channelRequest(Channel channel, AuthenticationInfo info, Client client)
           is called when there is a Client interested in performing a priviledged operation on a managed Channel.
 

Method Detail

channelRequest

public boolean channelRequest(Channel channel,
                              AuthenticationInfo info,
                              Client client)
is called when there is a Client interested in performing a priviledged operation on a managed Channel.
 The following priviledged operations could occur:

 JOIN a managed Channel.
 
Parameters:
channel - the Channel the Client is interested in.
info - the authentication information.
client - the Client.
Returns:
true if the client is allowed to perform the priviledged operation; false if not.
See Also:
AuthenticationInfo