feat(nacos-api): add enableRemoteSyncConfig properties setting
This commit is contained in:
parent
c91f99b82e
commit
090b047d4b
@ -91,6 +91,11 @@ public @interface NacosProperties {
|
|||||||
*/
|
*/
|
||||||
String MAX_RETRY = "maxRetry";
|
String MAX_RETRY = "maxRetry";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The property name of "enableRemoteSyncConfig"
|
||||||
|
*/
|
||||||
|
String ENABLE_REMOTE_SYNC_CONFIG = "enableRemoteSyncConfig";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The placeholder of endpoint, the value is <code>"${nacos.endpoint:}"</code>
|
* The placeholder of endpoint, the value is <code>"${nacos.endpoint:}"</code>
|
||||||
*/
|
*/
|
||||||
@ -146,6 +151,11 @@ public @interface NacosProperties {
|
|||||||
*/
|
*/
|
||||||
String MAX_RETRY_PLACEHOLDER = "${" + PREFIX + MAX_RETRY + ":}";
|
String MAX_RETRY_PLACEHOLDER = "${" + PREFIX + MAX_RETRY + ":}";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The placeholder of {@link NacosProperties#ENABLE_REMOTE_SYNC_CONFIG enableRemoteSyncConfig}, the value is <code>"${nacos.enableRemoteSyncConfig:}"</code>
|
||||||
|
*/
|
||||||
|
String ENABLE_REMOTE_SYNC_CONFIG_PLACEHOLDER = "${" + PREFIX + ENABLE_REMOTE_SYNC_CONFIG + "}";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The property of "endpoint"
|
* The property of "endpoint"
|
||||||
*
|
*
|
||||||
@ -234,4 +244,12 @@ public @interface NacosProperties {
|
|||||||
*/
|
*/
|
||||||
String maxRetry() default MAX_RETRY_PLACEHOLDER;
|
String maxRetry() default MAX_RETRY_PLACEHOLDER;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The property of "enableRemoteSyncConfig"
|
||||||
|
*
|
||||||
|
* @return empty as default value
|
||||||
|
* @see #ENABLE_REMOTE_SYNC_CONFIG
|
||||||
|
*/
|
||||||
|
String enableRemoteSyncConfig() default ENABLE_REMOTE_SYNC_CONFIG_PLACEHOLDER;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user