/************************************************************************* * * * CESeCore: CE Security Core * * * * This software 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 any later version. * * * * See terms of license at gnu.org. * * * *************************************************************************/ package org.cesecore.mock.authentication; import javax.ejb.Local; import org.cesecore.authentication.tokens.AuthenticationProvider; /** * This remote interface represents a trivial implementation of an AuthenticationProvider. This is merely a test resource and shouldn't be confused for real * code. * * TODO: Remove me when proper authentication infrastructure falls into place. * * @version $Id: SimpleAuthenticationProviderSessionLocal.java 14300 2012-03-08 16:07:07Z anatom $ */ @Local public interface SimpleAuthenticationProviderSessionLocal extends AuthenticationProvider { }