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 class
RewriteProperties.AnnotationConfigProviderProperties
-
Constructor Summary
Constructors Constructor Description RewriteProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(Object other)
boolean
equals(Object o)
RewriteProperties.AnnotationConfigProviderProperties
getAnnotationConfigProvider()
List<String>
getBasePackages()
Retrieve the optional package filter configuration parameter.Boolean
getConfigReloading()
Reload configuration.Boolean
getScanClassesDirectory()
Does the user not want to scan the WEB-INF/classes directory.Boolean
getScanLibDirectory()
Does the user want to scan the WEB-INF/lib directory.int
hashCode()
void
setBasePackages(List<String> basePackages)
Retrieve the optional package filter configuration parameter.void
setConfigReloading(Boolean configReloading)
Reload configuration.void
setScanClassesDirectory(Boolean scanClassesDirectory)
Does the user not want to scan the WEB-INF/classes directory.void
setScanLibDirectory(Boolean scanLibDirectory)
Does the user want to scan the WEB-INF/lib directory.String
toString()
-
-
-
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
none
in 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
none
in favor ofSpringBootAnnotationConfigProvider
.
-
canEqual
protected boolean canEqual(Object other)
-
-