diff options
author | Mark Spruiell <mes@zeroc.com> | 2006-04-19 13:57:26 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2006-04-19 13:57:26 +0000 |
commit | 9e516d6a3051e2b164042cbfe650f42ee184d1f5 (patch) | |
tree | 65d6508d7112625ee7d95af48007f2f73d49f3fd /java/src/IceSSL/Plugin.java | |
parent | separating client/server configuration; removing client/server properties (diff) | |
download | ice-9e516d6a3051e2b164042cbfe650f42ee184d1f5.tar.bz2 ice-9e516d6a3051e2b164042cbfe650f42ee184d1f5.tar.xz ice-9e516d6a3051e2b164042cbfe650f42ee184d1f5.zip |
removing client/server properties for IceSSL
Diffstat (limited to 'java/src/IceSSL/Plugin.java')
-rw-r--r-- | java/src/IceSSL/Plugin.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/IceSSL/Plugin.java b/java/src/IceSSL/Plugin.java index a4316453f62..64eac3f1b2b 100644 --- a/java/src/IceSSL/Plugin.java +++ b/java/src/IceSSL/Plugin.java @@ -15,10 +15,10 @@ public interface Plugin extends Ice.Plugin // Manually initialize the plugin. The application must set the property // IceSSL.DelayInit=1 in order to use this method. // - // It is legal to pass null as either argument, in which case the plugin - // obtains its certificates as directed by configuration properties. + // It is legal to pass null as the argument, in which case the plugin + // obtains its configuration via properties. // - void initialize(javax.net.ssl.SSLContext clientContext, javax.net.ssl.SSLContext serverContext); + void initialize(javax.net.ssl.SSLContext context); // // Establish the certificate verifier object. This should be |