
com.daedafusion.security.admin.providers.SessionAdminProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of security-framework Show documentation
Show all versions of security-framework Show documentation
A pluggable security framework "inspired" by the OWASP ESAPI framework
package com.daedafusion.security.admin.providers;
import com.daedafusion.sf.Provider;
import com.daedafusion.security.common.Session;
import com.daedafusion.security.exceptions.NotFoundException;
import java.util.List;
/**
* Created by mphilpot on 7/19/14.
*/
public interface SessionAdminProvider extends Provider
{
List getSessions();
void expireSession(String sessionId) throws NotFoundException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy