Reset branch to trunk.
[official-gcc.git] / trunk / libjava / classpath / javax / net / ssl / HandshakeCompletedEvent.java
blobb65dff06c8e3b9c82c1358f5f8edf87a64853f2d
1 /* HandshakeCompletedEvent.java -- SSL handshake completed.
2 Copyright (C) 2004 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 02110-1301 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
39 package javax.net.ssl;
41 import java.security.Principal;
42 import java.security.cert.Certificate;
44 import javax.security.cert.X509Certificate;
46 /**
47 * An event raised by a SSLSocket and passed to the {@link
48 * HandshakeCompletedListener#handshakeCompleted(HandshakeCompletedEvent)}
49 * method of all registered listeners when a SSL handshake in a SSL
50 * protocol is completed.
52 * @author Casey Marshall (rsdio@metastatic.org)
54 public class HandshakeCompletedEvent extends java.util.EventObject
56 // Fields.
57 // -------------------------------------------------------------------
59 /** Serialization constant. */
60 private static final long serialVersionUID = 7914963744257769778L;
62 /** The session. */
63 private final transient SSLSession session;
65 // Constructor.
66 // -------------------------------------------------------------------
68 /**
69 * Creates a new handshake completed event.
71 * @param socket The socket (also the source) creating this event.
72 * @param session The associated session object.
73 * @throws NullPointerException If <i>session</i> is null.
75 public HandshakeCompletedEvent(SSLSocket socket, SSLSession session)
77 super(socket);
78 if (session == null)
79 throw new NullPointerException();
80 this.session = session;
83 // Instance methods.
84 // --------------------------------------------------------------------
86 /**
87 * Returns the name of the cipher that was negotiated in this
88 * connection.
90 * @return The negotiated cipher name.
92 public String getCipherSuite()
94 if (session != null)
95 return session.getCipherSuite();
96 return null;
99 /**
100 * Returns the local certificates being used in this connection.
102 * @return The local certificates.
104 public Certificate[] getLocalCertificates()
106 if (session != null)
107 return session.getLocalCertificates();
108 return null;
112 * Returns the local identity used in this connection, or
113 * <code>null</code> if there is none.
115 * @return The local identity.
116 * @since 1.5
118 public Principal getLocalPrincipal ()
120 if (session != null)
121 return session.getLocalPrincipal ();
122 return null;
126 * Returns the peer's certificates being used in this connection.
128 * @return The peer's certificates.
129 * @throws SSLPeerUnverifiedException If the peer has not been
130 * verified.
132 public Certificate[] getPeerCertificates() throws SSLPeerUnverifiedException
134 if (session != null)
135 return session.getPeerCertificates();
136 return null;
139 public X509Certificate[] getPeerCertificateChain() throws SSLPeerUnverifiedException
141 if (session != null)
142 return session.getPeerCertificateChain();
143 return null;
147 * Returns the peer's identity, or <code>null</code> if there is
148 * none.
150 * @return The peer's identity.
151 * @throws SSLPeerUnverifiedException If the remote peer's identity
152 * could not be verified.
153 * @since 1.5
155 public Principal getPeerPrincipal () throws SSLPeerUnverifiedException
157 if (session != null)
158 return session.getPeerPrincipal ();
159 return null;
163 * Returns the SSL session object associated with this connection.
165 * @return The session object.
167 public SSLSession getSession()
169 return session;
173 * Returns the socket over which this connection is being
174 * negotiated. This method is equivalent to the {@link
175 * java.util.EventObject#getSource()} method.
177 * @return The socket.
179 public SSLSocket getSocket()
181 return (SSLSocket) getSource();