Package org.jboss.remoting.transport.coyote.ssl

Source Code of org.jboss.remoting.transport.coyote.ssl.RemotingSSLImplementation

/*
* JBoss, Home of Professional Open Source
* Copyright 2005, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package org.jboss.remoting.transport.coyote.ssl;

import java.net.Socket;
import java.util.HashMap;
import java.util.Map;
import javax.management.MBeanServer;
import javax.net.ssl.SSLSocket;
import org.apache.tomcat.util.net.SSLImplementation;
import org.apache.tomcat.util.net.SSLSupport;
import org.apache.tomcat.util.net.ServerSocketFactory;

/**
* @author <a href="mailto:tom.elrod@jboss.com">Tom Elrod</a>
*/
public class RemotingSSLImplementation extends SSLImplementation
{
   private static Map mbeanServerMap = new HashMap();

   public RemotingSSLImplementation()
   {
      super();
   }

   public String getImplementationName()
   {
      return "JBoss Remoting SSL";
   }

   public ServerSocketFactory getServerSocketFactory()
   {
      return new RemotingServerSocketFactory(mbeanServerMap);
   }

   public SSLSupport getSSLSupport(Socket sock)
   {
      SSLSupport ssls = new RemotingSSLSupport((SSLSocket) sock);
      return ssls;
   }

   public static void setMBeanServer(String locator, MBeanServer mBeanServer)
   {
      mbeanServerMap.put(locator, mBeanServer);
   }
}
TOP

Related Classes of org.jboss.remoting.transport.coyote.ssl.RemotingSSLImplementation

TOP
Copyright © 2018 www.massapi.com. 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.