From b51469b41167fb86ae2059a15cf0475c53fdda7b Mon Sep 17 00:00:00 2001 From: Matthew Newhook Date: Mon, 20 Oct 2014 11:40:05 -0230 Subject: Down with ant. From the gradle to the grave. --- java/src/IceSSL/Plugin.java | 94 --------------------------------------------- 1 file changed, 94 deletions(-) delete mode 100644 java/src/IceSSL/Plugin.java (limited to 'java/src/IceSSL/Plugin.java') diff --git a/java/src/IceSSL/Plugin.java b/java/src/IceSSL/Plugin.java deleted file mode 100644 index 608b5202a68..00000000000 --- a/java/src/IceSSL/Plugin.java +++ /dev/null @@ -1,94 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -package IceSSL; - -/** - * Interface that allows applications to interact with the IceSSL plug-in. - **/ -public interface Plugin extends Ice.Plugin -{ - /** - * Establishes the SSL context. The context must be established before - * plug-in is initialized. Therefore, the application must set - * the property Ice.InitPlugins to zero, call - * setContext to set the context, and finally - * invoke {@link PluginManager#initializePlugins}. - *

- * If an application supplies its own SSL context, the - * plug-in skips its normal property-based configuration. - * - * @param context The SSL context for the plug-in. - **/ - void setContext(javax.net.ssl.SSLContext context); - - /** - * Returns the SSL context. Use caution when modifying the returned - * value: changes made to this value do not affect existing connections. - * - * @return The SSL context for the plug-in. - **/ - javax.net.ssl.SSLContext getContext(); - - /** - * Establishes the certificate verifier. This must be - * done before any connections are established. - * - * @param verifier The certificate verifier. - **/ - void setCertificateVerifier(CertificateVerifier verifier); - - /** - * Returns the certificate verifier. - * - * @return The certificate verifier (null if not set). - **/ - CertificateVerifier getCertificateVerifier(); - - /** - * Establishes the password callback. This must be - * done before the plug-in is initialized. - * - * @param callback The password callback. - **/ - void setPasswordCallback(PasswordCallback callback); - - /** - * Returns the password callback. - * - * @return The password callback (null if not set). - **/ - PasswordCallback getPasswordCallback(); - - /** - * Supplies an input stream for the keystore. Calling this method - * causes IceSSL to ignore the IceSSL.Keystore property. - * - * @param stream The input stream for the keystore. - **/ - void setKeystoreStream(java.io.InputStream stream); - - /** - * Supplies an input stream for the truststore. Calling this method - * causes IceSSL to ignore the IceSSL.Truststore property. It is - * legal to supply the same input stream as the one for {@link #setKeystoreStream}, - * in which case IceSSL uses the certificates contained in the keystore. - * - * @param stream The input stream for the truststore. - **/ - void setTruststoreStream(java.io.InputStream stream); - - /** - * Adds an input stream for the random number seed. You may call - * this method multiple times if necessary. - * - * @param stream The input stream for the random number seed. - **/ - void addSeedStream(java.io.InputStream stream); -} -- cgit v1.2.3