Interface SessionManagerFactoryConfiguration<S,SC,AL,LC>
-
- Type Parameters:
S- the HttpSession specification typeSC- the ServletContext specification typeAL- the HttpSessionAttributeListener specification typeMC- the marshalling context typeLC- the local context type
- All Superinterfaces:
DeploymentConfiguration,WebDeploymentConfiguration
public interface SessionManagerFactoryConfiguration<S,SC,AL,LC> extends WebDeploymentConfiguration
Encapsulates the configuration of a session manager.- Author:
- Paul Ferraro
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SessionAttributePersistenceStrategygetAttributePersistenceStrategy()ImmutabilitygetImmutability()LocalContextFactory<LC>getLocalContextFactory()ByteBufferMarshallergetMarshaller()IntegergetMaxActiveSessions()SpecificationProvider<S,SC,AL>getSpecificationProvider()-
Methods inherited from interface org.wildfly.clustering.ee.DeploymentConfiguration
getDeploymentName
-
Methods inherited from interface org.wildfly.clustering.web.WebDeploymentConfiguration
getServerName
-
-
-
-
Method Detail
-
getMaxActiveSessions
Integer getMaxActiveSessions()
-
getMarshaller
ByteBufferMarshaller getMarshaller()
-
getLocalContextFactory
LocalContextFactory<LC> getLocalContextFactory()
-
getImmutability
Immutability getImmutability()
-
getSpecificationProvider
SpecificationProvider<S,SC,AL> getSpecificationProvider()
-
getAttributePersistenceStrategy
SessionAttributePersistenceStrategy getAttributePersistenceStrategy()
-
-