You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by lh...@apache.org on 2009/09/18 17:58:16 UTC

svn commit: r816689 - /incubator/shiro/trunk/web/src/main/java/org/apache/shiro/web/DefaultWebSecurityManager.java

Author: lhazlewood
Date: Fri Sep 18 15:58:15 2009
New Revision: 816689

URL: http://svn.apache.org/viewvc?rev=816689&view=rev
Log:
Removed 2 unused constants

Modified:
    incubator/shiro/trunk/web/src/main/java/org/apache/shiro/web/DefaultWebSecurityManager.java

Modified: incubator/shiro/trunk/web/src/main/java/org/apache/shiro/web/DefaultWebSecurityManager.java
URL: http://svn.apache.org/viewvc/incubator/shiro/trunk/web/src/main/java/org/apache/shiro/web/DefaultWebSecurityManager.java?rev=816689&r1=816688&r2=816689&view=diff
==============================================================================
--- incubator/shiro/trunk/web/src/main/java/org/apache/shiro/web/DefaultWebSecurityManager.java (original)
+++ incubator/shiro/trunk/web/src/main/java/org/apache/shiro/web/DefaultWebSecurityManager.java Fri Sep 18 15:58:15 2009
@@ -56,16 +56,6 @@
     public static final String HTTP_SESSION_MODE = "http";
     public static final String NATIVE_SESSION_MODE = "native";
 
-    /**
-     * The key that is used to store subject principals in the session.
-     */
-    public static final String PRINCIPALS_SESSION_KEY = DefaultWebSecurityManager.class.getName() + "_PRINCIPALS_SESSION_KEY";
-
-    /**
-     * The key that is used to store whether or not the user is authenticated in the session.
-     */
-    public static final String AUTHENTICATED_SESSION_KEY = DefaultWebSecurityManager.class.getName() + "_AUTHENTICATED_SESSION_KEY";
-
     private String sessionMode = HTTP_SESSION_MODE; //default
 
     public DefaultWebSecurityManager() {