io.github.springwolf.plugins.stomp.configuration.properties.SpringwolfStompConfigConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of springwolf-stomp Show documentation
Show all versions of springwolf-stomp Show documentation
Automated JSON API documentation for STOMP listeners (websocket) built with Spring
The newest version!
// SPDX-License-Identifier: Apache-2.0
package io.github.springwolf.plugins.stomp.configuration.properties;
import static io.github.springwolf.core.configuration.properties.SpringwolfConfigConstants.ENABLED;
import static io.github.springwolf.core.configuration.properties.SpringwolfConfigConstants.SCANNER;
import static io.github.springwolf.core.configuration.properties.SpringwolfConfigConstants.SPRINGWOLF_PLUGIN_CONFIG_PREFIX;
public class SpringwolfStompConfigConstants {
public static final String SPRINGWOLF_STOMP_CONFIG_PREFIX = SPRINGWOLF_PLUGIN_CONFIG_PREFIX + ".stomp";
public static final String SPRINGWOLF_SCANNER_STOMP_MESSAGE_MAPPING_ENABLED =
SPRINGWOLF_STOMP_CONFIG_PREFIX + SCANNER + ".stomp-message-mapping" + ENABLED;
public static final String SPRINGWOLF_SCANNER_STOMP_SEND_TO_ENABLED =
SPRINGWOLF_STOMP_CONFIG_PREFIX + SCANNER + ".stomp-send-to" + ENABLED;
public static final String SPRINGWOLF_SCANNER_STOMP_SEND_TO_USER_ENABLED =
SPRINGWOLF_STOMP_CONFIG_PREFIX + SCANNER + ".stomp-send-to-user" + ENABLED;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy