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

PrivateKeyCallback

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

Fields Summary
Constructors Summary
public PrivateKeyCallback(Request request)
Constructs this PrivateKeyCallback with a private key Request object.

The request object identifies the private key to be returned. The corresponding certificate chain for the private key is also returned.

If the request object is null, the handler of the callback relies on its own default.

param
request identifier for the private key, or null.

        super(request);
    
Methods Summary
public com.sun.enterprise.security.jauth.callback.PrivateKeyCallback$RequestgetRequest()
Get the Request object which identifies the private 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 default.

	return (Request)super.getRequest();