Interface SessionManagerFactoryConfiguration
-
- All Superinterfaces:
WebDeploymentConfiguration
public interface SessionManagerFactoryConfiguration extends WebDeploymentConfiguration
Defines the container configuration for a session manager factory of a deployment.- Author:
- Paul Ferraro
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DurationgetDefaultSessionTimeout()Returns the default session timeout.org.jboss.as.server.deployment.DeploymentUnitgetDeploymentUnit()The deployment unit with which this session manager factory is to be associated.IntegergetMaxActiveSessions()Returns the maximum number of sessions that should be active at any given time.-
Methods inherited from interface org.wildfly.clustering.web.container.WebDeploymentConfiguration
getDeploymentName, getServerName
-
-
-
-
Method Detail
-
getMaxActiveSessions
Integer getMaxActiveSessions()
Returns the maximum number of sessions that should be active at any given time.- Returns:
- a positive integer; or null if there should be no limit to the number of active sessions.
-
getDefaultSessionTimeout
Duration getDefaultSessionTimeout()
Returns the default session timeout.- Returns:
- the duration after which sessions will timeout.
-
getDeploymentUnit
org.jboss.as.server.deployment.DeploymentUnit getDeploymentUnit()
The deployment unit with which this session manager factory is to be associated.- Returns:
- a deployment unit
-
-