diff options
author | Andrew Haley <aph@redhat.com> | 2016-09-30 16:24:48 +0000 |
---|---|---|
committer | Andrew Haley <aph@gcc.gnu.org> | 2016-09-30 16:24:48 +0000 |
commit | 07b78716af6a9d7c9fd1e94d9baf94a52c873947 (patch) | |
tree | 3f22b3241c513ad168c8353805614ae1249410f4 /libjava/javax/net/ssl/HandshakeCompletedEvent.h | |
parent | eae993948bae8b788c53772bcb9217c063716f93 (diff) | |
download | gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.zip gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.tar.gz gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.tar.bz2 |
Makefile.def: Remove libjava.
2016-09-30 Andrew Haley <aph@redhat.com>
* Makefile.def: Remove libjava.
* Makefile.tpl: Likewise.
* Makefile.in: Regenerate.
* configure.ac: Likewise.
* configure: Likewise.
* gcc/java: Remove.
* libjava: Likewise.
From-SVN: r240662
Diffstat (limited to 'libjava/javax/net/ssl/HandshakeCompletedEvent.h')
-rw-r--r-- | libjava/javax/net/ssl/HandshakeCompletedEvent.h | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/libjava/javax/net/ssl/HandshakeCompletedEvent.h b/libjava/javax/net/ssl/HandshakeCompletedEvent.h deleted file mode 100644 index a9c1547..0000000 --- a/libjava/javax/net/ssl/HandshakeCompletedEvent.h +++ /dev/null @@ -1,66 +0,0 @@ - -// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*- - -#ifndef __javax_net_ssl_HandshakeCompletedEvent__ -#define __javax_net_ssl_HandshakeCompletedEvent__ - -#pragma interface - -#include <java/util/EventObject.h> -#include <gcj/array.h> - -extern "Java" -{ - namespace java - { - namespace security - { - class Principal; - namespace cert - { - class Certificate; - } - } - } - namespace javax - { - namespace net - { - namespace ssl - { - class HandshakeCompletedEvent; - class SSLSession; - class SSLSocket; - } - } - namespace security - { - namespace cert - { - class X509Certificate; - } - } - } -} - -class javax::net::ssl::HandshakeCompletedEvent : public ::java::util::EventObject -{ - -public: - HandshakeCompletedEvent(::javax::net::ssl::SSLSocket *, ::javax::net::ssl::SSLSession *); - virtual ::java::lang::String * getCipherSuite(); - virtual JArray< ::java::security::cert::Certificate * > * getLocalCertificates(); - virtual ::java::security::Principal * getLocalPrincipal(); - virtual JArray< ::java::security::cert::Certificate * > * getPeerCertificates(); - virtual JArray< ::javax::security::cert::X509Certificate * > * getPeerCertificateChain(); - virtual ::java::security::Principal * getPeerPrincipal(); - virtual ::javax::net::ssl::SSLSession * getSession(); - virtual ::javax::net::ssl::SSLSocket * getSocket(); -private: - static const jlong serialVersionUID = 7914963744257769778LL; - ::javax::net::ssl::SSLSession * __attribute__((aligned(__alignof__( ::java::util::EventObject)))) session; -public: - static ::java::lang::Class class$; -}; - -#endif // __javax_net_ssl_HandshakeCompletedEvent__ |