FileDocCategorySizeDatePackage
SecretKeyCallback.javaAPI DocGlassfish v2 API4030Fri May 04 22:35:44 BST 2007com.sun.enterprise.security.jauth.callback

SecretKeyCallback

public class SecretKeyCallback extends javax.security.auth.message.callback.SecretKeyCallback
Callback for private key and corresponding certificate chain.
version
%I%, %G%

Fields Summary
Constructors Summary
public SecretKeyCallback(Request request)
Constructs this SecretKeyCallback with a secret key Request object.

The request object identifies the secret key to be returned. If the alias is null, the handler of the callback relies on its own default.

param
request request object identifying the secret key, or null.

	super(request);
    
Methods Summary
public com.sun.enterprise.security.jauth.callback.SecretKeyCallback$RequestgetRequest()
Get the Request object which identifies the secret key to be returned.

return
the Request object which identifies the private key to be returned, or null. If null, the handler of the callback relies on its own deafult.

	return (Request)super.getRequest();