Changed interface to extend Context. This provides interface-level compatibility with objects requiring a Context, rather than requiring implementations to also implement Context.

This commit is contained in:
Ben Alex 2004-03-28 12:07:34 +00:00
parent 71a0faf829
commit cff8894b99
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ import net.sf.acegisecurity.Authentication;
* @author Ben Alex * @author Ben Alex
* @version $Id$ * @version $Id$
*/ */
public interface SecureContext { public interface SecureContext extends Context {
//~ Methods ================================================================ //~ Methods ================================================================
public void setAuthentication(Authentication newAuthentication); public void setAuthentication(Authentication newAuthentication);