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/EnumAuthMethod.java | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/opends/src/server/org/opends/server/authorization/dseecompat/EnumAuthMethod.java b/opends/src/server/org/opends/server/authorization/dseecompat/EnumAuthMethod.java
index 1f12a12..7f3fe72 100644
--- a/opends/src/server/org/opends/server/authorization/dseecompat/EnumAuthMethod.java
+++ b/opends/src/server/org/opends/server/authorization/dseecompat/EnumAuthMethod.java
@@ -41,6 +41,7 @@
* This class provides an enumeration of the allowed authmethod types.
*/
public enum EnumAuthMethod {
+
/**
* The enumeration type when the bind rule has specified authentication of
* none.
@@ -76,10 +77,10 @@
*/
AUTHMETHOD_NOMATCH ("nomatch");
- /**
+ /*
* The name of the authmethod.
*/
- public String authmethod = null;
+ private String authmethod = null;
/**
* Creates a new enumeration type for this authmethod.
--
Gitblit v1.10.0