/* * Atricore IDBus * * Copyright (c) 2009, Atricore Inc. * * 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.atricore.idbus.kernel.main.session; import org.atricore.idbus.kernel.main.session.exceptions.NoSuchSessionException; import org.atricore.idbus.kernel.main.session.exceptions.SSOSessionException; /** * This is the service interface exposed to JOSSO Agents and external JOSSO Session Service consumers. * * @author <a href="mailto:sgonzalez@atricore.org">Sebastian Gonzalez Oyuela</a> * @version $Rev: 1359 $ $Date: 2009-07-19 13:57:57 -0300 (Sun, 19 Jul 2009) $ */ public interface SSOSessionManagerService { /** * This method accesss the session associated to the received id. * This resets the session last access time and updates the access count. * * @param sessionId the session id previously returned by initiateSession. * @throws org.atricore.idbus.kernel.main.session.exceptions.NoSuchSessionException * if the session id is not valid or the session is not valid. */ void accessSession(String sessionId) throws NoSuchSessionException, SSOSessionException; /** * This method returns a SSOSession instance based on its id. * * @param sessionId * @return * @throws org.atricore.idbus.kernel.main.session.exceptions.NoSuchSessionException it the SSO Session does not exists (or is invalid) * @throws SSOSessionException */ SSOSession getSession(String sessionId) throws NoSuchSessionException, SSOSessionException; }