From 93dc3520b26d74dadbdad265182d9beaa9145dc4 Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 19 Apr 2016 13:16:38 +0000
Subject: [PATCH] opendj-config: added @Override + Autorefactor'ed comments
---
opendj-config/src/main/java/org/forgerock/opendj/config/client/OperationRejectedException.java | 22 +++++-----------------
1 files changed, 5 insertions(+), 17 deletions(-)
diff --git a/opendj-config/src/main/java/org/forgerock/opendj/config/client/OperationRejectedException.java b/opendj-config/src/main/java/org/forgerock/opendj/config/client/OperationRejectedException.java
index 18a6cc8..feab0d9 100644
--- a/opendj-config/src/main/java/org/forgerock/opendj/config/client/OperationRejectedException.java
+++ b/opendj-config/src/main/java/org/forgerock/opendj/config/client/OperationRejectedException.java
@@ -39,29 +39,17 @@
*/
public class OperationRejectedException extends AdminClientException {
- /**
- * The type of operation that caused this exception.
- */
+ /** The type of operation that caused this exception. */
public enum OperationType {
- /**
- * A managed object could not be created.
- */
+ /** A managed object could not be created. */
CREATE,
-
- /**
- * A managed object could not be deleted.
- */
+ /** A managed object could not be deleted. */
DELETE,
-
- /**
- * A managed object could not be modified.
- */
+ /** A managed object could not be modified. */
MODIFY;
}
- /**
- * Serialization ID.
- */
+ /** Serialization ID. */
private static final long serialVersionUID = 8547688890613079044L;
/** Gets the default message. */
--
Gitblit v1.10.0