Yair Zaslavsky has uploaded a new change for review.

Change subject: aaa: Rename NeogitaitonAuthnFilter
......................................................................

aaa: Rename NeogitaitonAuthnFilter

This renamess back NeogitaitonAuthnFilter to AuthenticationFilter

Change-Id: I84c024751c5c3d9eb0757c87ffeb4b5f9026ef4d
Topic: AAA
Signed-off-by: Yair Zaslavsky <[email protected]>
---
R 
backend/manager/modules/aaa/src/main/java/org/ovirt/engine/core/aaa/AuthenticationFilter.java
1 file changed, 4 insertions(+), 4 deletions(-)


  git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/46/27246/1

diff --git 
a/backend/manager/modules/aaa/src/main/java/org/ovirt/engine/core/aaa/NegotiationAuthnFilter.java
 
b/backend/manager/modules/aaa/src/main/java/org/ovirt/engine/core/aaa/AuthenticationFilter.java
similarity index 94%
rename from 
backend/manager/modules/aaa/src/main/java/org/ovirt/engine/core/aaa/NegotiationAuthnFilter.java
rename to 
backend/manager/modules/aaa/src/main/java/org/ovirt/engine/core/aaa/AuthenticationFilter.java
index 71d65e5..a4eb6b1 100644
--- 
a/backend/manager/modules/aaa/src/main/java/org/ovirt/engine/core/aaa/NegotiationAuthnFilter.java
+++ 
b/backend/manager/modules/aaa/src/main/java/org/ovirt/engine/core/aaa/AuthenticationFilter.java
@@ -24,7 +24,7 @@
  * This filter should be added to the {@code web.xml} file to the applications 
that want to use the authentication
  * mechanism implemented in this package.
  */
-public class NegotiationAuthnFilter implements Filter {
+public class AuthenticationFilter implements Filter {
 
     /**
      * The authentication profiles used to perform the authentication process.
@@ -35,18 +35,18 @@
      * We store a boolean flag in the HTTP session that indicates if the user 
has been already authenticated, this is
      * the key for that flag.
      */
-    private static final String AUTHENTICATED_ATTR = 
NegotiationAuthnFilter.class.getName() + ".authenticated";
+    private static final String AUTHENTICATED_ATTR = 
AuthenticationFilter.class.getName() + ".authenticated";
 
     /**
      * When a user has been authenticated we store its login name in the HTTP 
session, this is the key for that name.
      */
-    private static final String NAME_ATTR = 
NegotiationAuthnFilter.class.getName() + ".name";
+    private static final String NAME_ATTR = 
AuthenticationFilter.class.getName() + ".name";
 
     /**
      * In order to support several alternative authenticators we store their 
names in a stack inside the HTTP session,
      * this is the key for that stack.
      */
-    private static final String STACK_ATTR = 
NegotiationAuthnFilter.class.getName() + ".stack";
+    private static final String STACK_ATTR = 
AuthenticationFilter.class.getName() + ".stack";
 
     @Override
     public void init(FilterConfig filterConfig) throws ServletException {


-- 
To view, visit http://gerrit.ovirt.org/27246
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I84c024751c5c3d9eb0757c87ffeb4b5f9026ef4d
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Yair Zaslavsky <[email protected]>
_______________________________________________
Engine-patches mailing list
[email protected]
http://lists.ovirt.org/mailman/listinfo/engine-patches

Reply via email to