com.microsoft.azure.servicebus.stream.binder.properties.ServiceBusTopicExtendedBindingProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-cloud-azure-servicebus-topic-stream-binder Show documentation
Show all versions of spring-cloud-azure-servicebus-topic-stream-binder Show documentation
Azure Service Bus binder for Spring Cloud Stream
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE in the project root for
* license information.
*/
package com.microsoft.azure.servicebus.stream.binder.properties;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* @author Warren Zhu
*/
@ConfigurationProperties("spring.cloud.stream.servicebus.topic")
public class ServiceBusTopicExtendedBindingProperties extends ServiceBusExtendedBindingProperties {
private static final String DEFAULTS_PREFIX = "spring.cloud.stream.servicebus.topic.default";
@Override
public String getDefaultsPrefix() {
return DEFAULTS_PREFIX;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy