/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.wildfly.clustering.web.infinispan.session; import javax.servlet.ServletContext; import org.infinispan.Cache; import org.infinispan.remoting.transport.Address; import org.wildfly.clustering.dispatcher.CommandDispatcherFactory; import org.wildfly.clustering.ee.Batcher; import org.wildfly.clustering.ee.Recordable; import org.wildfly.clustering.ee.infinispan.CacheProperties; import org.wildfly.clustering.ee.infinispan.TransactionBatch; import org.wildfly.clustering.group.NodeFactory; import org.wildfly.clustering.infinispan.spi.distribution.Key; import org.wildfly.clustering.web.IdentifierFactory; import org.wildfly.clustering.web.session.ImmutableSession; import org.wildfly.clustering.web.session.SessionExpirationListener; /** * Configuration for an {@link InfinispanSessionManager}. * @author Paul Ferraro */ public interface InfinispanSessionManagerConfiguration { ServletContext getServletContext(); SessionExpirationListener getExpirationListener(); Cache<Key<String>, ?> getCache(); CacheProperties getProperties(); IdentifierFactory<String> getIdentifierFactory(); Batcher<TransactionBatch> getBatcher(); CommandDispatcherFactory getCommandDispatcherFactory(); NodeFactory<Address> getNodeFactory(); int getMaxActiveSessions(); Recordable<ImmutableSession> getInactiveSessionRecorder(); }