From 45359adc09ac1d9e48206c549e667ed6965c7cd3 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Mon, 28 May 2007 15:31:13 +0000
Subject: [PATCH] Fix the following issues:
---
opends/src/server/org/opends/server/admin/PropertyOption.java | 23 +++++++++++++++--------
1 files changed, 15 insertions(+), 8 deletions(-)
diff --git a/opends/src/server/org/opends/server/admin/PropertyOption.java b/opends/src/server/org/opends/server/admin/PropertyOption.java
index 2d4341e..9f97611 100644
--- a/opends/src/server/org/opends/server/admin/PropertyOption.java
+++ b/opends/src/server/org/opends/server/admin/PropertyOption.java
@@ -30,13 +30,13 @@
/**
- * 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 must not be directly exposed
- * in client applications.
+ * Use this option to identify properties which must not be directly
+ * exposed in client applications.
*/
HIDDEN,
@@ -51,14 +51,21 @@
MULTI_VALUED,
/**
- * Use this option to identify properties which cannot be modified.
+ * 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, when modified, will require
- * some additiona administrator action in order for the changes to take
- * effect.
+ * 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, when modified, will
+ * require some additiona administrator action in order for the
+ * changes to take effect.
*/
REQUIRES_ADMIN_ACTION
}
--
Gitblit v1.10.0