|
|
|
@ -16,7 +16,6 @@
|
|
|
|
|
|
|
|
|
|
package org.springframework.cloud.stream.binder.rocketmq.properties;
|
|
|
|
|
|
|
|
|
|
import org.apache.rocketmq.client.AccessChannel;
|
|
|
|
|
import org.apache.rocketmq.common.MixAll;
|
|
|
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
|
|
|
import org.springframework.cloud.stream.binder.rocketmq.RocketMQBinderConstants;
|
|
|
|
@ -54,11 +53,6 @@ public class RocketMQBinderConfigurationProperties {
|
|
|
|
|
*/
|
|
|
|
|
private String customizedTraceTopic = MixAll.RMQ_SYS_TRACE_TOPIC;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Enum type for accessChannel, values: LOCAL, CLOUD.
|
|
|
|
|
*/
|
|
|
|
|
private AccessChannel accessChannel = AccessChannel.LOCAL;
|
|
|
|
|
|
|
|
|
|
public String getNameServer() {
|
|
|
|
|
return nameServer;
|
|
|
|
|
}
|
|
|
|
@ -98,12 +92,4 @@ public class RocketMQBinderConfigurationProperties {
|
|
|
|
|
public void setCustomizedTraceTopic(String customizedTraceTopic) {
|
|
|
|
|
this.customizedTraceTopic = customizedTraceTopic;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public AccessChannel getAccessChannel() {
|
|
|
|
|
return accessChannel;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setAccessChannel(AccessChannel accessChannel) {
|
|
|
|
|
this.accessChannel = accessChannel;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|