Class NativeEnvironmentProperties
- java.lang.Object
-
- org.springframework.cloud.config.server.environment.NativeEnvironmentProperties
-
- All Implemented Interfaces:
EnvironmentRepositoryProperties
@ConfigurationProperties("spring.cloud.config.server.native") public class NativeEnvironmentProperties extends Object implements EnvironmentRepositoryProperties- Author:
- Dylan Roberts
-
-
Constructor Summary
Constructors Constructor Description NativeEnvironmentProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleangetAddLabelLocations()StringgetDefaultLabel()BooleangetFailOnError()intgetOrder()String[]getSearchLocations()StringgetVersion()voidsetAddLabelLocations(Boolean addLabelLocations)voidsetDefaultLabel(String defaultLabel)voidsetFailOnError(Boolean failOnError)voidsetOrder(int order)voidsetSearchLocations(String[] searchLocations)voidsetVersion(String version)
-
-
-
Method Detail
-
getFailOnError
public Boolean getFailOnError()
-
setFailOnError
public void setFailOnError(Boolean failOnError)
-
getAddLabelLocations
public Boolean getAddLabelLocations()
-
setAddLabelLocations
public void setAddLabelLocations(Boolean addLabelLocations)
-
getDefaultLabel
public String getDefaultLabel()
-
setDefaultLabel
public void setDefaultLabel(String defaultLabel)
-
getSearchLocations
public String[] getSearchLocations()
-
setSearchLocations
public void setSearchLocations(String[] searchLocations)
-
getVersion
public String getVersion()
-
setVersion
public void setVersion(String version)
-
getOrder
public int getOrder()
-
setOrder
public void setOrder(int order)
- Specified by:
setOrderin interfaceEnvironmentRepositoryProperties
-
-