[jboss-cvs] JBossRemoting/src/main/org/jboss/remoting/transport/http/ssl ...

Tom Elrod tom.elrod at jboss.com
Wed Jul 12 00:49:49 EDT 2006


  User: telrod  
  Date: 06/07/12 00:49:49

  Modified:    src/main/org/jboss/remoting/transport/http/ssl 
                        HTTPSServerInvoker.java
  Log:
  JBREM-496 & JBREM-492 & JBREM-535 - changed invoker loading to use a client and server factory instead of loading classes directly.  This allows users ability to plugin custom transport implementation with zero config.  Also added config for forcing remote call when client and server within same jvm (which was able to do previously using BYVALUE config, but not any more).  Also changed way to get hint if transport supports ssl to be provided by the transport factory instead of the transport itself.
  
  Revision  Changes    Path
  1.5       +3 -10     JBossRemoting/src/main/org/jboss/remoting/transport/http/ssl/HTTPSServerInvoker.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: HTTPSServerInvoker.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/transport/http/ssl/HTTPSServerInvoker.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- HTTPSServerInvoker.java	22 Jun 2006 03:26:38 -0000	1.4
  +++ HTTPSServerInvoker.java	12 Jul 2006 04:49:49 -0000	1.5
  @@ -41,6 +41,9 @@
    * Extension of the HTTPserverInvoker which uses a custom server socket
    * which is created using custom server socket factory that can support SSL.
    *
  + * @deprecated This class has been replaced by org.jboss.remoting.transport.coyote.CoyoteInvoker, which is used
  + * as the default server invoker for the http and https transport on the server side.  This class will be removed
  + * from remoting distribution in a future release.
    * @author <a href="mailto:tom.elrod at jboss.com">Tom Elrod</a>
    */
   public class HTTPSServerInvoker extends HTTPServerInvoker
  @@ -57,16 +60,6 @@
         super(locator, configuration);
      }
      
  -   /**
  -    * Indicates if this server invoker implementation supports
  -    * SSL.
  -    * @return true
  -    */
  -   public static boolean supportsSSL()
  -   {
  -      return true;
  -   }
  -
      protected ServerSocket createServerSocket(int serverBindPort, int backlog, InetAddress bindAddress) throws IOException
      {
         ServerSocket svrSocket = null;
  
  
  



More information about the jboss-cvs-commits mailing list