Class RewriteProperties
- java.lang.Object
 - 
- org.joinfaces.autoconfigure.rewrite.RewriteProperties
 
 
- 
- All Implemented Interfaces:
 ServletContextInitParameterProperties
@ConfigurationProperties(prefix="joinfaces.rewrite") public class RewriteProperties extends Object implements ServletContextInitParameterProperties
Configuration properties of Rewrite. 
- 
- 
Nested Class Summary
Nested Classes Modifier and Type Class Description static classRewriteProperties.AnnotationConfigProviderProperties 
- 
Constructor Summary
Constructors Constructor Description RewriteProperties() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)RewriteProperties.AnnotationConfigProviderPropertiesgetAnnotationConfigProvider()List<String>getBasePackages()Retrieve the optional package filter configuration parameter.BooleangetConfigReloading()Reload configuration.BooleangetScanClassesDirectory()Does the user not want to scan the WEB-INF/classes directory.BooleangetScanLibDirectory()Does the user want to scan the WEB-INF/lib directory.inthashCode()voidsetBasePackages(List<String> basePackages)Retrieve the optional package filter configuration parameter.voidsetConfigReloading(Boolean configReloading)Reload configuration.voidsetScanClassesDirectory(Boolean scanClassesDirectory)Does the user not want to scan the WEB-INF/classes directory.voidsetScanLibDirectory(Boolean scanLibDirectory)Does the user want to scan the WEB-INF/lib directory.StringtoString() 
 - 
 
- 
- 
Method Detail
- 
getConfigReloading
public Boolean getConfigReloading()
Reload configuration. 
- 
getScanClassesDirectory
public Boolean getScanClassesDirectory()
Does the user not want to scan the WEB-INF/classes directory. 
- 
getScanLibDirectory
public Boolean getScanLibDirectory()
Does the user want to scan the WEB-INF/lib directory. 
- 
getBasePackages
public List<String> getBasePackages()
Retrieve the optional package filter configuration parameter. Users can disable annotation scanning with value none.Defaults to
nonein favor ofSpringBootAnnotationConfigProvider. 
- 
getAnnotationConfigProvider
public RewriteProperties.AnnotationConfigProviderProperties getAnnotationConfigProvider()
 
- 
setConfigReloading
public void setConfigReloading(Boolean configReloading)
Reload configuration. 
- 
setScanClassesDirectory
public void setScanClassesDirectory(Boolean scanClassesDirectory)
Does the user not want to scan the WEB-INF/classes directory. 
- 
setScanLibDirectory
public void setScanLibDirectory(Boolean scanLibDirectory)
Does the user want to scan the WEB-INF/lib directory. 
- 
setBasePackages
public void setBasePackages(List<String> basePackages)
Retrieve the optional package filter configuration parameter. Users can disable annotation scanning with value none.Defaults to
nonein favor ofSpringBootAnnotationConfigProvider. 
- 
canEqual
protected boolean canEqual(Object other)
 
 - 
 
 -