From 661593f15f14aaf55d73c7979dab1e900ebae2af Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Wed, 15 Oct 2014 15:17:11 +0000
Subject: [PATCH] AutoRefactored comments/javadocs on OpenDJ SDK
---
opendj-sdk/opendj-config/src/test/java/org/forgerock/opendj/config/client/ldap/LDAPClientTest.java | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/opendj-sdk/opendj-config/src/test/java/org/forgerock/opendj/config/client/ldap/LDAPClientTest.java b/opendj-sdk/opendj-config/src/test/java/org/forgerock/opendj/config/client/ldap/LDAPClientTest.java
index 6b15ab3..f57ab7c 100644
--- a/opendj-sdk/opendj-config/src/test/java/org/forgerock/opendj/config/client/ldap/LDAPClientTest.java
+++ b/opendj-sdk/opendj-config/src/test/java/org/forgerock/opendj/config/client/ldap/LDAPClientTest.java
@@ -915,7 +915,7 @@
}
}
- // Asserts that the actual set of DNs contains the expected values.
+ /** Asserts that the actual set of DNs contains the expected values. */
private void assertDNSetEquals(SortedSet<DN> actual, String... expected) {
String[] actualStrings = new String[actual.size()];
int i = 0;
@@ -926,7 +926,7 @@
Assert.assertEqualsNoOrder(actualStrings, expected);
}
- // Create the named test parent managed object.
+ /** Create the named test parent managed object. */
private TestParentCfgClient createTestParent(ManagementContext context, String name)
throws Exception {
ManagedObject<RootCfgClient> root = context.getRootConfigurationManagedObject();
@@ -934,7 +934,7 @@
TestParentCfgDefn.getInstance(), name, null).getConfiguration();
}
- // Retrieve the named test parent managed object.
+ /** Retrieve the named test parent managed object. */
private TestParentCfgClient getTestParent(ManagementContext context, String name)
throws Exception {
ManagedObject<RootCfgClient> root = context.getRootConfigurationManagedObject();
@@ -942,13 +942,13 @@
.getConfiguration();
}
- // List test parent managed objects.
+ /** List test parent managed objects. */
private String[] listTestParents(ManagementContext context) throws Exception {
ManagedObject<RootCfgClient> root = context.getRootConfigurationManagedObject();
return root.listChildren(TestCfg.getTestOneToManyParentRelationDefinition());
}
- // Remove the named test parent managed object.
+ /** Remove the named test parent managed object. */
private void removeTestParent(ManagementContext context, String name) throws Exception {
ManagedObject<RootCfgClient> root = context.getRootConfigurationManagedObject();
root.removeChild(TestCfg.getTestOneToManyParentRelationDefinition(), name);
--
Gitblit v1.10.0