Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/activemq/transport/https/HttpsTransportConnectorFactory.java


1   /*
2    * Created on 12-Aug-2005
3    */
4   package org.activemq.transport.https;
5   
6   import java.net.URI;
7   
8   import javax.jms.JMSException;
9   
10  import org.activemq.io.WireFormat;
11  import org.activemq.transport.TransportServerChannel;
12  import org.activemq.transport.http.HttpTransportConnectorFactory;
13  
14  public class HttpsTransportConnectorFactory extends HttpTransportConnectorFactory {
15  
16    public TransportServerChannel create(WireFormat wireFormat, URI bindAddress) throws JMSException {
17      return new HttpsTransportConnector(bindAddress);
18  }
19  
20  
21  }