Class FacesServletProperties
- java.lang.Object
-
- org.joinfaces.autoconfigure.javaxfaces.FacesServletProperties
-
@ConfigurationProperties("joinfaces.faces-servlet") public class FacesServletProperties extends 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(Object other)
boolean
equals(Object o)
int
getLoadOnStartup()
String
getName()
int
getOrder()
The order-property for the ServletRegistrationBean.Set<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(String name)
void
setOrder(int order)
The order-property for the ServletRegistrationBean.void
setUrlMappings(Set<String> urlMappings)
String
toString()
-
-
-
Method Detail
-
getName
public String getName()
-
getLoadOnStartup
public int getLoadOnStartup()
-
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(String name)
-
setLoadOnStartup
public void setLoadOnStartup(int loadOnStartup)
-
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.
-
canEqual
protected boolean canEqual(Object other)
-
-