Interface SessionManagementProvider
public interface SessionManagementProvider
Container-specific session management provider for a deployment.
- Author:
- Paul Ferraro
-
Method Summary
Modifier and TypeMethodDescriptionorg.wildfly.subsystem.service.DeploymentServiceInstallergetSessionAffinityServiceInstaller(org.jboss.as.server.deployment.DeploymentPhaseContext context, org.jboss.msc.service.ServiceName name, WebDeploymentConfiguration configuration) Returns an installer of a service providing container-specific session affinity logic.org.wildfly.subsystem.service.DeploymentServiceInstallergetSessionManagerFactoryServiceInstaller(org.jboss.msc.service.ServiceName name, SessionManagerFactoryConfiguration configuration) Returns an installer of a service providing a container-specific session manager factory.
-
Method Details
-
getSessionManagerFactoryServiceInstaller
org.wildfly.subsystem.service.DeploymentServiceInstaller getSessionManagerFactoryServiceInstaller(org.jboss.msc.service.ServiceName name, SessionManagerFactoryConfiguration configuration) Returns an installer of a service providing a container-specific session manager factory.- Parameters:
name- the service name of the session manager factory serviceconfiguration- the configuration of the session manager factory- Returns:
- a number of service configurators
-
getSessionAffinityServiceInstaller
org.wildfly.subsystem.service.DeploymentServiceInstaller getSessionAffinityServiceInstaller(org.jboss.as.server.deployment.DeploymentPhaseContext context, org.jboss.msc.service.ServiceName name, WebDeploymentConfiguration configuration) Returns an installer of a service providing container-specific session affinity logic.- Parameters:
context- the deployment phase contextname- the service name of the session affinity serviceconfiguration- the configuration of the deployment- Returns:
- a number of service configurators
-