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/EnumAuthMethod.java |   33 +++++++--------------------------
 1 files changed, 7 insertions(+), 26 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/EnumAuthMethod.java b/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/EnumAuthMethod.java
index b808b07..c945c92 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/EnumAuthMethod.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/EnumAuthMethod.java
@@ -12,37 +12,19 @@
  * information: "Portions Copyright [year] [name of copyright owner]".
  *
  * Copyright 2008 Sun Microsystems, Inc.
- * Portions Copyright 2015 ForgeRock AS.
+ * Portions Copyright 2015-2016 ForgeRock AS.
  */
 package org.opends.server.authorization.dseecompat;
 
-/**
- * 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.
-     */
+/** This class provides an enumeration of the allowed authmethod types. */
+enum EnumAuthMethod {
+    /** The enumeration type when the bind rule has specified authentication of none. */
     AUTHMETHOD_NONE          ("none"),
-
-    /**
-     * The enumeration type when the bind rule has specified authentication of
-     * simple.
-     */
+    /** The enumeration type when the bind rule has specified authentication of simple. */
     AUTHMETHOD_SIMPLE        ("simple"),
-
-    /**
-     * The enumeration type when the bind rule has specified authentication of
-     * ssl client auth.
-     */
+    /** The enumeration type when the bind rule has specified authentication of ssl client auth. */
     AUTHMETHOD_SSL           ("ssl"),
-
-    /**
-     * The enumeration type when the bind rule has specified authentication of
-     * a sasl mechanism.
-     */
+    /** The enumeration type when the bind rule has specified authentication of a sasl mechanism. */
     AUTHMETHOD_SASL          ("sasl");
 
     /**
@@ -51,5 +33,4 @@
      */
     EnumAuthMethod (String authmethod){
     }
-
 }

--
Gitblit v1.10.0