org.zodiac.boot.constants.PlatformBootSystemPropertiesConstants Maven / Gradle / Ivy
The newest version!
package org.zodiac.boot.constants;
import org.zodiac.commons.constants.SystemPropertiesConstants;
public interface PlatformBootSystemPropertiesConstants {
String SPRING_HTTP_REQUEST_PREFIX = SystemPropertiesConstants.Zodiac.SPRING_HTTP_PREFIX + ".request";
String SPRING_HTTP_REQUEST_ENABLED = SPRING_HTTP_REQUEST_PREFIX + ".enabled";
String SPRING_SERVLET_MULTIPART_FILE_PREFIX = SystemPropertiesConstants.Spring.SPRING_SERVLET_MULTIPART_PREFIX + ".file";
String SPRING_WEBFLUX_MULTIPART_FILE_PREFIX = SystemPropertiesConstants.Zodiac.SPRING_WEBFLUX_MULTIPART_PREFIX + ".file";
String SPRING_MULTIPART_PREFIX = SystemPropertiesConstants.Zodiac.SPRING_PREFIX + ".multipart";
String SPRING_MULTIPART_FILE_PREFIX = SPRING_MULTIPART_PREFIX + ".file";
String SPRING_MULTIPART_FILE_ENABLED = SPRING_MULTIPART_FILE_PREFIX + ".enabled";
}