com.sun.media.jsdt
Interface TokenManager


public abstract interface TokenManager
extends JSDTManager

The Token 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 tokenRequest(Token token, AuthenticationInfo info, Client client)
           called when there is a Client interested in performing a priviledged operation on a managed Token.
 

Method Detail

tokenRequest

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

 JOIN a managed Token.
 
Parameters:
token - the Token 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