From 64721a895973f935c1adb975247770f402a88fdf Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Mon, 25 Apr 2016 15:10:24 +0000
Subject: [PATCH] ACI UCDetector and AutoRefactor code cleanup
---
opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/AciHandler.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/AciHandler.java b/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/AciHandler.java
index ef801b0..562dd50 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/AciHandler.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/AciHandler.java
@@ -79,19 +79,19 @@
* String used to indicate that the evaluating ACI had a all
* operational attributes targetattr match (targetattr="+").
*/
- public static final String ALL_OP_ATTRS_MATCHED = "allOpAttrsMatched";
+ static final String ALL_OP_ATTRS_MATCHED = "allOpAttrsMatched";
/**
* String used to indicate that the evaluating ACI had a all user
* attributes targetattr match (targetattr="*").
*/
- public static final String ALL_USER_ATTRS_MATCHED = "allUserAttrsMatched";
+ static final String ALL_USER_ATTRS_MATCHED = "allUserAttrsMatched";
/**
* String used to save the original authorization entry in an
* operation attachment if a proxied authorization control was seen.
*/
- public static final String ORIG_AUTH_ENTRY = "origAuthorizationEntry";
+ static final String ORIG_AUTH_ENTRY = "origAuthorizationEntry";
/** Attribute type corresponding to "aci" attribute. */
static AttributeType aciType;
--
Gitblit v1.10.0