From 7bbe88cbb3a5a0be5e2799935e00907f755b7a0a 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.
---
opendj-sdk/opends/src/server/org/opends/server/authorization/dseecompat/AuthMethod.java | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/authorization/dseecompat/AuthMethod.java b/opendj-sdk/opends/src/server/org/opends/server/authorization/dseecompat/AuthMethod.java
index 9c58c50..5adc0ec 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/authorization/dseecompat/AuthMethod.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/authorization/dseecompat/AuthMethod.java
@@ -34,7 +34,15 @@
* The AuthMethod class represents an authmethod bind rule keyword expression.
*/
public class AuthMethod implements KeywordBindRule {
+
+ /*
+ * Enumeration representing the authentication method.
+ */
private EnumAuthMethod authMethod=null;
+
+ /*
+ * Enumeration representing the bind rule operation type.
+ */
private EnumBindRuleType type=null;
/**
--
Gitblit v1.10.0