/* * JBoss, Home of Professional Open Source. * Copyright 2008, Red Hat Middleware LLC, 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.jboss.web.tomcat.service.session.notification; /** * Encapsulates information about the container's capability to issue * servlet spec notifications under different condititions. Implementations of * {@link ClusteredSessionNotificationPolicy} can use this * information to get a sense of the capabilities of the container. * * @author Brian Stansberry */ public class ClusteredSessionNotificationCapability { /** * Does the container support invoking <code>HttpSessionListener</code> * callbacks under the given conditions? * * @param status the status of the session * @param cause the cause of the session notification * @param local <code>true</code> if the event driving the notification * originated on this node; <code>false</code> otherwise * * @return <code>true</code> if the notification is supported, * <code>false</code> if not */ public boolean isHttpSessionListenerInvocationSupported(ClusteredSessionManagementStatus status, ClusteredSessionNotificationCause cause, boolean local) { return local && status.isLocallyUsed() && !ClusteredSessionNotificationCause.STATE_TRANSFER.equals(cause); } /** * Under the given conditions, does the container support invoking * <code>HttpSessionAttributeListener</code> callbacks? * * @param status the status of the session * @param cause the cause of the session notification * @param local <code>true</code> if the event driving the notification * originated on this node; <code>false</code> otherwise * * @return <code>true</code> if the notification is supported, * <code>false</code> if not */ public boolean isHttpSessionAttributeListenerInvocationSupported(ClusteredSessionManagementStatus status, ClusteredSessionNotificationCause cause, boolean local) { return local && status.isLocallyUsed() && !ClusteredSessionNotificationCause.STATE_TRANSFER.equals(cause); } /** * Under the given conditions, does the container support invoking * <code>HttpSessionBindingListener</code> callbacks? * * @param status the status of the session * @param cause the cause of the session notification * @param local <code>true</code> if the event driving the notification * originated on this node; <code>false</code> otherwise * * @return <code>true</code> if the notification is supported, * <code>false</code> if not */ public boolean isHttpSessionBindingListenerInvocationSupported(ClusteredSessionManagementStatus status, ClusteredSessionNotificationCause cause, boolean local) { return local && status.isLocallyUsed() && !ClusteredSessionNotificationCause.STATE_TRANSFER.equals(cause); } /** * Is the container able to distinguish whether a session that has been * {@link ClusteredSessionManagementStatus#isLocallyUsed() locally used} * is also {@link ClusteredSessionManagementStatus#getLocallyActive() locally active}? * * @return <code>true</code> if the container is able to make this distinction; * <code>false</code> if not */ public boolean isLocallyActiveAware() { return false; } /** * Is the container able to distinguish whether a session is * {@link ClusteredSessionManagementStatus#getLocallyOwned() locally owned}? * * @return <code>true</code> if the container is able to make this distinction; * <code>false</code> if not */ public boolean isLocallyOwnedAware() { return false; } /** * Returns whether the local container is aware of events on remote nodes * that could give rise to notifications. * * @param cause the cause * @return <code>true</code> if the local container is aware of the * remote event, <code>false</code> if not. */ public boolean isRemoteCauseAware(ClusteredSessionNotificationCause cause) { return ClusteredSessionNotificationCause.CREATE.equals(cause) || ClusteredSessionNotificationCause.MODIFY.equals(cause) || ClusteredSessionNotificationCause.INVALIDATE.equals(cause); } }