Java Code Examples for org.springframework.cloud.service.common.AmqpServiceInfo#AMQPS_SCHEME
The following examples show how to use
org.springframework.cloud.service.common.AmqpServiceInfo#AMQPS_SCHEME .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AmqpServiceInfoCreator.java From spring-cloud-connectors with Apache License 2.0 | 4 votes |
public AmqpServiceInfoCreator() { super(new Tags("rabbitmq"), AmqpServiceInfo.AMQP_SCHEME, AmqpServiceInfo.AMQPS_SCHEME); }
Example 2
Source File: AmqpServiceInfoCreator.java From spring-cloud-connectors with Apache License 2.0 | 4 votes |
public AmqpServiceInfoCreator() { super(AmqpServiceInfo.AMQP_SCHEME, AmqpServiceInfo.AMQPS_SCHEME); }
Example 3
Source File: AmqpServiceInfoCreator.java From spring-cloud-connectors with Apache License 2.0 | 4 votes |
public AmqpServiceInfoCreator() { super(AmqpServiceInfo.AMQP_SCHEME, AmqpServiceInfo.AMQPS_SCHEME); }