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 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(java.lang.Object other)
boolean
equals(java.lang.Object o)
RewriteProperties.AnnotationConfigProviderProperties
getAnnotationConfigProvider()
java.util.List<java.lang.String>
getBasePackages()
Retrieve the optional package filter configuration parameter.java.lang.Boolean
getConfigReloading()
Reload configuration.java.lang.Boolean
getScanClassesDirectory()
Does the user not want to scan the WEB-INF/classes directory.java.lang.Boolean
getScanLibDirectory()
Does the user want to scan the WEB-INF/lib directory.int
hashCode()
void
setBasePackages(java.util.List<java.lang.String> basePackages)
Retrieve the optional package filter configuration parameter.void
setConfigReloading(java.lang.Boolean configReloading)
Reload configuration.void
setScanClassesDirectory(java.lang.Boolean scanClassesDirectory)
Does the user not want to scan the WEB-INF/classes directory.void
setScanLibDirectory(java.lang.Boolean scanLibDirectory)
Does the user want to scan the WEB-INF/lib directory.java.lang.String
toString()
-
-
-
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
none
in 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
none
in favor ofSpringBootAnnotationConfigProvider
.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
canEqual
protected boolean canEqual(java.lang.Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-