From efa949b25f472d7e4c39733678d8f0e5229f8201 Mon Sep 17 00:00:00 2001
From: Nicolas Capponi <nicolas.capponi@forgerock.com>
Date: Thu, 26 Dec 2013 15:31:32 +0000
Subject: [PATCH] Checkpoint commit for OPENDJ-1235 : Migrate configuration framework
---
opendj-sdk/opendj-admin/src/main/java/org/opends/server/admin/PropertyOption.java | 63 +++++++++++++++----------------
1 files changed, 30 insertions(+), 33 deletions(-)
diff --git a/opendj-sdk/opendj-admin/src/main/java/org/opends/server/admin/PropertyOption.java b/opendj-sdk/opendj-admin/src/main/java/org/opends/server/admin/PropertyOption.java
index d7cff92..655a284 100644
--- a/opendj-sdk/opendj-admin/src/main/java/org/opends/server/admin/PropertyOption.java
+++ b/opendj-sdk/opendj-admin/src/main/java/org/opends/server/admin/PropertyOption.java
@@ -26,45 +26,42 @@
package org.opends.server.admin;
-
-
/**
- * This enumeration contains various options that can be associated
- * with property definitions.
+ * This enumeration contains various options that can be associated with
+ * property definitions.
*/
public enum PropertyOption {
- /**
- * Use this option to identify properties which should be considered
- * as advanced and should not be exposed by default in client
- * applications.
- */
- ADVANCED,
+ /**
+ * Use this option to identify properties which should be considered as
+ * advanced and should not be exposed by default in client applications.
+ */
+ ADVANCED,
- /**
- * Use this option to identify properties which must not be directly
- * exposed in client applications.
- */
- HIDDEN,
+ /**
+ * Use this option to identify properties which must not be directly exposed
+ * in client applications.
+ */
+ HIDDEN,
- /**
- * Use this option to identify properties which must have a value.
- */
- MANDATORY,
+ /**
+ * Use this option to identify properties which must have a value.
+ */
+ MANDATORY,
- /**
- * Use this option to identify properties which are multi-valued.
- */
- MULTI_VALUED,
+ /**
+ * Use this option to identify properties which are multi-valued.
+ */
+ MULTI_VALUED,
- /**
- * Use this option to identify properties which can be initialized
- * once only and are read-only thereafter.
- */
- READ_ONLY,
+ /**
+ * Use this option to identify properties which can be initialized once only
+ * and are read-only thereafter.
+ */
+ READ_ONLY,
- /**
- * Use this option to identify properties which are for monitoring
- * purposes only and are generated automatically by the server..
- */
- MONITORING;
+ /**
+ * Use this option to identify properties which are for monitoring purposes
+ * only and are generated automatically by the server..
+ */
+ MONITORING;
}
--
Gitblit v1.10.0