All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.acegisecurity.concurrent.SessionIdentifierAware Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
/* Copyright 2004, 2005, 2006 Acegi Technology Pty Limited
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.acegisecurity.concurrent;

/**
 * Implemented by {@link Authentication#getDetails()} implementations that are
 * capable of returning a session ID.
 * 
 * 

* This interface is used by {@link * org.acegisecurity.concurrent.SessionRegistryUtils} to extract the session * ID from an Authentication object. In turn, * SessionRegistryUtils is used by {@link * ConcurrentSessionControllerImpl}. If not using this latter implementation, * you do not need the Authentication.getDetails() object to * implement SessionIdentifierAware. *

* * @author Ben Alex * @version $Id: SessionIdentifierAware.java,v 1.1 2006/01/27 05:10:30 benalex Exp $ */ public interface SessionIdentifierAware { //~ Methods ================================================================ /** * Obtains the session ID. * * @return the session ID, or null if not known. */ public String getSessionId(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy