org.jacorb.orb.listener
Class NullSSLSessionListener

java.lang.Object
  extended by org.jacorb.orb.listener.NullSSLSessionListener
All Implemented Interfaces:
java.util.EventListener, SSLSessionListener

public class NullSSLSessionListener
extends java.lang.Object
implements SSLSessionListener

empty implementation of the SSLSessionListener interface

Version:
$Id: NullSSLSessionListener.java,v 1.1 2006/06/26 08:08:24 alphonse.bendt Exp $
Author:
Alphonse Bendt

Constructor Summary
NullSSLSessionListener()
           
 
Method Summary
 void handshakeException(SSLSessionEvent e)
          handshakeException is called whenever the client and server could not negotiate the desired level of security.
 void keyException(SSLSessionEvent e)
          keyException is called whenever a bad SSL key is reported.
 void peerUnverifiedException(SSLSessionEvent e)
          peerUnverifiedException is called whenever the peer was not able to identify itself (for example; no certificate, the particular cipher suite being used does not support authentication, or no peer authentication was established during SSL handshaking)
 void protocolException(SSLSessionEvent e)
          protocolException is called whenever there is an error in the operation of the SSL protocol.
 void sessionCreated(SSLSessionEvent e)
          sessionCreated is called whenever a successful SSL connection has been made.
 void sslException(SSLSessionEvent e)
          sslException is called whenever there is an error in the SSL subsystem.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NullSSLSessionListener

public NullSSLSessionListener()
Method Detail

sessionCreated

public void sessionCreated(SSLSessionEvent e)
Description copied from interface: SSLSessionListener
sessionCreated is called whenever a successful SSL connection has been made.

Specified by:
sessionCreated in interface SSLSessionListener
Parameters:
e - a SSLSessionEvent value

handshakeException

public void handshakeException(SSLSessionEvent e)
Description copied from interface: SSLSessionListener
handshakeException is called whenever the client and server could not negotiate the desired level of security.

Specified by:
handshakeException in interface SSLSessionListener
Parameters:
e - a SSLSessionEvent value

keyException

public void keyException(SSLSessionEvent e)
Description copied from interface: SSLSessionListener
keyException is called whenever a bad SSL key is reported. Normally, this indicates misconfiguration of the server or client SSL certificate and private key.

Specified by:
keyException in interface SSLSessionListener
Parameters:
e - a SSLSessionEvent value

peerUnverifiedException

public void peerUnverifiedException(SSLSessionEvent e)
Description copied from interface: SSLSessionListener
peerUnverifiedException is called whenever the peer was not able to identify itself (for example; no certificate, the particular cipher suite being used does not support authentication, or no peer authentication was established during SSL handshaking)

Specified by:
peerUnverifiedException in interface SSLSessionListener
Parameters:
e - a SSLSessionEvent value

protocolException

public void protocolException(SSLSessionEvent e)
Description copied from interface: SSLSessionListener
protocolException is called whenever there is an error in the operation of the SSL protocol. Normally this indicates a flaw in one of the protocol implementations.

Specified by:
protocolException in interface SSLSessionListener
Parameters:
e - a SSLSessionEvent value

sslException

public void sslException(SSLSessionEvent e)
Description copied from interface: SSLSessionListener
sslException is called whenever there is an error in the SSL subsystem. This may be called if the error does not fit into one of the above categories.

Specified by:
sslException in interface SSLSessionListener
Parameters:
e - a SSLSessionEvent value