Class RewriteFilterProperties
- java.lang.Object
 - 
- org.joinfaces.autoconfigure.rewrite.RewriteFilterProperties
 
 
- 
@ConfigurationProperties("joinfaces.rewrite.filter") public class RewriteFilterProperties extends Object
ConfigurationPropertiesfor theRewriteFilter. 
- 
- 
Constructor Summary
Constructors Constructor Description RewriteFilterProperties() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)EnumSet<DispatcherType>getDispatcherTypes()Dispatcher types for the RewriteFilter as defined in the Servlet Specification.intgetOrder()The order of the RewriteFilter.Set<String>getUrlPatterns()URL patterns for the RewriteFilter as defined in the Servlet Specification.inthashCode()booleanisEnabled()If the RewriteFilter should be actively handled by JoinFaces.voidsetDispatcherTypes(EnumSet<DispatcherType> dispatcherTypes)Dispatcher types for the RewriteFilter as defined in the Servlet Specification.voidsetEnabled(boolean enabled)If the RewriteFilter should be actively handled by JoinFaces.voidsetOrder(int order)The order of the RewriteFilter.voidsetUrlPatterns(Set<String> urlPatterns)URL patterns for the RewriteFilter as defined in the Servlet Specification.StringtoString() 
 - 
 
- 
- 
Method Detail
- 
isEnabled
public boolean isEnabled()
If the RewriteFilter should be actively handled by JoinFaces. 
- 
getOrder
public int getOrder()
The order of the RewriteFilter. 
- 
getUrlPatterns
public Set<String> getUrlPatterns()
URL patterns for the RewriteFilter as defined in the Servlet Specification. 
- 
getDispatcherTypes
public EnumSet<DispatcherType> getDispatcherTypes()
Dispatcher types for the RewriteFilter as defined in the Servlet Specification. 
- 
setEnabled
public void setEnabled(boolean enabled)
If the RewriteFilter should be actively handled by JoinFaces. 
- 
setOrder
public void setOrder(int order)
The order of the RewriteFilter. 
- 
setUrlPatterns
public void setUrlPatterns(Set<String> urlPatterns)
URL patterns for the RewriteFilter as defined in the Servlet Specification. 
- 
setDispatcherTypes
public void setDispatcherTypes(EnumSet<DispatcherType> dispatcherTypes)
Dispatcher types for the RewriteFilter as defined in the Servlet Specification. 
- 
canEqual
protected boolean canEqual(Object other)
 
 - 
 
 -