From 2fef5aa0046548cb88034553f522d907195a19f7 Mon Sep 17 00:00:00 2001
From: Nicolas Capponi <nicolas.capponi@forgerock.com>
Date: Mon, 02 Dec 2013 10:47:18 +0000
Subject: [PATCH] OpenDJ 3 : config framework
---
opendj-admin/src/main/java/org/opends/server/admin/PropertyIsReadOnlyException.java | 34 ++++++++++++++--------------------
1 files changed, 14 insertions(+), 20 deletions(-)
diff --git a/opendj-admin/src/main/java/org/opends/server/admin/PropertyIsReadOnlyException.java b/opendj-admin/src/main/java/org/opends/server/admin/PropertyIsReadOnlyException.java
index 72e3954..e57f793 100644
--- a/opendj-admin/src/main/java/org/opends/server/admin/PropertyIsReadOnlyException.java
+++ b/opendj-admin/src/main/java/org/opends/server/admin/PropertyIsReadOnlyException.java
@@ -27,32 +27,26 @@
package org.opends.server.admin;
-
-
-import static org.opends.messages.AdminMessages.*;
-
-
+import static com.forgerock.opendj.ldap.AdminMessages.*;
/**
* Thrown when an attempt is made to modify a read-only property.
*/
public class PropertyIsReadOnlyException extends PropertyException {
- /**
- * Serialization ID.
- */
- private static final long serialVersionUID = 5315348044141024459L;
+ /**
+ * Serialization ID.
+ */
+ private static final long serialVersionUID = 5315348044141024459L;
-
-
- /**
- * Create a new property is read-only exception.
- *
- * @param pd
- * The property definition.
- */
- public PropertyIsReadOnlyException(PropertyDefinition<?> pd) {
- super(pd, ERR_PROPERTY_IS_READ_ONLY_EXCEPTION.get(pd.getName()));
- }
+ /**
+ * Create a new property is read-only exception.
+ *
+ * @param pd
+ * The property definition.
+ */
+ public PropertyIsReadOnlyException(PropertyDefinition<?> pd) {
+ super(pd, ERR_PROPERTY_IS_READ_ONLY_EXCEPTION.get(pd.getName()));
+ }
}
--
Gitblit v1.10.0