Class RewriteProperties
- java.lang.Object
 - 
- org.joinfaces.autoconfigure.rewrite.RewriteProperties
 
 
- 
- All Implemented Interfaces:
 ServletContextInitParameterProperties
@ConfigurationProperties(prefix="joinfaces.rewrite") public class RewriteProperties extends java.lang.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(java.lang.Object other)booleanequals(java.lang.Object o)RewriteProperties.AnnotationConfigProviderPropertiesgetAnnotationConfigProvider()java.util.List<java.lang.String>getBasePackages()Retrieve the optional package filter configuration parameter.java.lang.BooleangetConfigReloading()Reload configuration.java.lang.BooleangetScanClassesDirectory()Does the user not want to scan the WEB-INF/classes directory.java.lang.BooleangetScanLibDirectory()Does the user want to scan the WEB-INF/lib directory.inthashCode()voidsetBasePackages(java.util.List<java.lang.String> basePackages)Retrieve the optional package filter configuration parameter.voidsetConfigReloading(java.lang.Boolean configReloading)Reload configuration.voidsetScanClassesDirectory(java.lang.Boolean scanClassesDirectory)Does the user not want to scan the WEB-INF/classes directory.voidsetScanLibDirectory(java.lang.Boolean scanLibDirectory)Does the user want to scan the WEB-INF/lib directory.java.lang.StringtoString() 
 - 
 
- 
- 
Method Detail
- 
getConfigReloading
public java.lang.Boolean getConfigReloading()
Reload configuration. 
- 
getScanClassesDirectory
public java.lang.Boolean getScanClassesDirectory()
Does the user not want to scan the WEB-INF/classes directory. 
- 
getScanLibDirectory
public java.lang.Boolean getScanLibDirectory()
Does the user want to scan the WEB-INF/lib directory. 
- 
getBasePackages
public java.util.List<java.lang.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(java.lang.Boolean configReloading)
Reload configuration. 
- 
setScanClassesDirectory
public void setScanClassesDirectory(java.lang.Boolean scanClassesDirectory)
Does the user not want to scan the WEB-INF/classes directory. 
- 
setScanLibDirectory
public void setScanLibDirectory(java.lang.Boolean scanLibDirectory)
Does the user want to scan the WEB-INF/lib directory. 
- 
setBasePackages
public void setBasePackages(java.util.List<java.lang.String> basePackages)
Retrieve the optional package filter configuration parameter. Users can disable annotation scanning with value none.Defaults to
nonein favor ofSpringBootAnnotationConfigProvider. 
- 
equals
public boolean equals(java.lang.Object o)
- Overrides:
 equalsin classjava.lang.Object
 
- 
canEqual
protected boolean canEqual(java.lang.Object other)
 
- 
hashCode
public int hashCode()
- Overrides:
 hashCodein classjava.lang.Object
 
- 
toString
public java.lang.String toString()
- Overrides:
 toStringin classjava.lang.Object
 
 - 
 
 -