You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by gt...@apache.org on 2009/03/26 23:49:46 UTC

svn commit: r758908 - /activemq/trunk/activemq-core/src/main/java/org/apache/activemq/transport/tcp/SslTransportFactory.java

Author: gtully
Date: Thu Mar 26 22:49:46 2009
New Revision: 758908

URL: http://svn.apache.org/viewvc?rev=758908&view=rev
Log:
add some redirection to the deprecated method

Modified:
    activemq/trunk/activemq-core/src/main/java/org/apache/activemq/transport/tcp/SslTransportFactory.java

Modified: activemq/trunk/activemq-core/src/main/java/org/apache/activemq/transport/tcp/SslTransportFactory.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/transport/tcp/SslTransportFactory.java?rev=758908&r1=758907&r2=758908&view=diff
==============================================================================
--- activemq/trunk/activemq-core/src/main/java/org/apache/activemq/transport/tcp/SslTransportFactory.java (original)
+++ activemq/trunk/activemq-core/src/main/java/org/apache/activemq/transport/tcp/SslTransportFactory.java Thu Mar 26 22:49:46 2009
@@ -187,8 +187,10 @@
      * 
      * @param km
      * @param tm
-     * @param object
+     * @param random
      * @deprecated "Do not use anymore... using static initializers like this method only allows the JVM to use 1 SSL configuration per broker."
+     * @see org.apache.activemq.broker.SslContext#setCurrentSslContext(SslContext)
+     * @see org.apache.activemq.broker.SslContext#getSSLContext()
      */
     public void setKeyAndTrustManagers(KeyManager[] km, TrustManager[] tm, SecureRandom random) {
         SslContext ctx = new SslContext(km, tm, random);