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:
parent
71a0faf829
commit
cff8894b99
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue