Преглед изворни кода

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

Ben Alex пре 21 година
родитељ
комит
cff8894b99
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      core/src/main/java/org/acegisecurity/context/SecureContext.java

+ 1 - 1
core/src/main/java/org/acegisecurity/context/SecureContext.java

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