001 /* 002 * Created on 12-Aug-2005 003 */ 004 package org.activemq.transport.https; 005 006 import java.net.URI; 007 008 import javax.jms.JMSException; 009 010 import org.activemq.io.WireFormat; 011 import org.activemq.transport.TransportServerChannel; 012 import org.activemq.transport.http.HttpTransportConnectorFactory; 013 014 public class HttpsTransportConnectorFactory extends HttpTransportConnectorFactory { 015 016 public TransportServerChannel create(WireFormat wireFormat, URI bindAddress) throws JMSException { 017 return new HttpsTransportConnector(bindAddress); 018 } 019 020 021 }