Class FacesServletProperties
- java.lang.Object
-
- org.joinfaces.autoconfigure.javaxfaces.FacesServletProperties
-
@ConfigurationProperties("joinfaces.faces-servlet") public class FacesServletProperties extends java.lang.Object
ConfigurationProperties
for theFacesServlet
-registration. The properties of this class are directly mapped to theServletRegistrationBean
-
-
Constructor Summary
Constructors Constructor Description FacesServletProperties()
-
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)
int
getLoadOnStartup()
java.lang.String
getName()
int
getOrder()
The order-property for the ServletRegistrationBean.java.util.Set<java.lang.String>
getUrlMappings()
int
hashCode()
boolean
isAsyncSupported()
boolean
isEnabled()
If the FacesServlet should be actively handled by Joinfaces.void
setAsyncSupported(boolean asyncSupported)
void
setEnabled(boolean enabled)
If the FacesServlet should be actively handled by Joinfaces.void
setLoadOnStartup(int loadOnStartup)
void
setName(java.lang.String name)
void
setOrder(int order)
The order-property for the ServletRegistrationBean.void
setUrlMappings(java.util.Set<java.lang.String> urlMappings)
java.lang.String
toString()
-
-
-
Method Detail
-
getName
public java.lang.String getName()
-
getLoadOnStartup
public int getLoadOnStartup()
-
getUrlMappings
public java.util.Set<java.lang.String> getUrlMappings()
-
isEnabled
public boolean isEnabled()
If the FacesServlet should be actively handled by Joinfaces.
-
isAsyncSupported
public boolean isAsyncSupported()
-
getOrder
public int getOrder()
The order-property for the ServletRegistrationBean.
-
setName
public void setName(java.lang.String name)
-
setLoadOnStartup
public void setLoadOnStartup(int loadOnStartup)
-
setUrlMappings
public void setUrlMappings(java.util.Set<java.lang.String> urlMappings)
-
setEnabled
public void setEnabled(boolean enabled)
If the FacesServlet should be actively handled by Joinfaces.
-
setAsyncSupported
public void setAsyncSupported(boolean asyncSupported)
-
setOrder
public void setOrder(int order)
The order-property for the ServletRegistrationBean.
-
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
-
-