Example usage for com.rabbitmq.client ConnectionFactory DEFAULT_AMQP_OVER_SSL_PORT

List of usage examples for com.rabbitmq.client ConnectionFactory DEFAULT_AMQP_OVER_SSL_PORT

Introduction

In this page you can find the example usage for com.rabbitmq.client ConnectionFactory DEFAULT_AMQP_OVER_SSL_PORT.

Prototype

int DEFAULT_AMQP_OVER_SSL_PORT

To view the source code for com.rabbitmq.client ConnectionFactory DEFAULT_AMQP_OVER_SSL_PORT.

Click Source Link

Document

The default ssl port

Usage

From source file:org.mule.transport.amqp.AmqpsConnector.java

License:Open Source License

public AmqpsConnector(final MuleContext muleContext) {
    super(muleContext);

    tls = new TlsConfiguration(null);
    tls.setSslType(null);// w ww.ja  va  2s.  c o m

    setPort(ConnectionFactory.DEFAULT_AMQP_OVER_SSL_PORT);
}