Package org.jboss.remoting.transport.sslsocket

Examples of org.jboss.remoting.transport.sslsocket.SSLSocketServerInvoker


   protected void configureServerInvoker(SocketServerInvoker invoker)
   {
      super.configureServerInvoker(invoker);
      if (invoker instanceof SSLSocketServerInvoker)
      {
         SSLSocketServerInvoker sslInvoker = (SSLSocketServerInvoker) invoker;
         sslInvoker.setEnabledCipherSuites(cipherSuites);
         sslInvoker.setEnabledProtocols(protocols);
         sslInvoker.setEnableSessionCreation(true);
      }
   }
View Full Code Here

TOP

Related Classes of org.jboss.remoting.transport.sslsocket.SSLSocketServerInvoker

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.