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.
-
-
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)
java.util.List<java.lang.String>
getBasePackages()
Retrieve the optional package filter configuration parameter.java.lang.Boolean
getConfigReloading()
Reload configuration.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
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.
-
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.
-
setConfigReloading
public void setConfigReloading(java.lang.Boolean configReloading)
Reload configuration.
-
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.
-
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
-
-