From 14c5f3996a46c1281cb133de439f25492c97530a Mon Sep 17 00:00:00 2001
From: dugan <dugan@localhost>
Date: Wed, 07 Mar 2007 14:56:34 +0000
Subject: [PATCH] These changes are mostly related to restructuring the regular expression patterns to make them more readable by defining constants.
---
opends/src/server/org/opends/server/authorization/dseecompat/EnumBindRuleKeyword.java | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/opends/src/server/org/opends/server/authorization/dseecompat/EnumBindRuleKeyword.java b/opends/src/server/org/opends/server/authorization/dseecompat/EnumBindRuleKeyword.java
index cfea957..d0ce121 100644
--- a/opends/src/server/org/opends/server/authorization/dseecompat/EnumBindRuleKeyword.java
+++ b/opends/src/server/org/opends/server/authorization/dseecompat/EnumBindRuleKeyword.java
@@ -32,6 +32,7 @@
* keyword types.
*/
public enum EnumBindRuleKeyword {
+
/**
* The enumeration type when the bind rule has specified keyword of
* userdn.
@@ -77,10 +78,11 @@
* authmethod.
*/
AUTHMETHOD ("authmethod");
- /**
+
+ /*
* The keyword name.
*/
- public final String keyword;
+ private final String keyword;
/**
* Creates a new enumeration type for the specified keyword.
--
Gitblit v1.10.0