From 0ca095370a648a30730ed9cb7d4dda1d9bd10334 Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Wed, 22 Jun 2016 17:31:07 +0000
Subject: [PATCH] OPENDJ-3036 Renamed various classes and methods to camel-case

---
 opendj-rest2ldap/src/main/java/org/forgerock/opendj/rest2ldap/NamingStrategy.java |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/opendj-rest2ldap/src/main/java/org/forgerock/opendj/rest2ldap/NameStrategy.java b/opendj-rest2ldap/src/main/java/org/forgerock/opendj/rest2ldap/NamingStrategy.java
similarity index 92%
rename from opendj-rest2ldap/src/main/java/org/forgerock/opendj/rest2ldap/NameStrategy.java
rename to opendj-rest2ldap/src/main/java/org/forgerock/opendj/rest2ldap/NamingStrategy.java
index ad7d817..e180964 100644
--- a/opendj-rest2ldap/src/main/java/org/forgerock/opendj/rest2ldap/NameStrategy.java
+++ b/opendj-rest2ldap/src/main/java/org/forgerock/opendj/rest2ldap/NamingStrategy.java
@@ -25,15 +25,15 @@
 import org.forgerock.opendj.ldap.requests.SearchRequest;
 
 /**
- * A name strategy is responsible for naming REST resources and LDAP entries.
+ * A naming strategy is responsible for naming REST resources and LDAP entries.
  */
-abstract class NameStrategy {
+abstract class NamingStrategy {
     /*
      * This interface is an abstract class so that methods can be made package
      * private until API is finalized.
      */
 
-    NameStrategy() {
+    NamingStrategy() {
         // Nothing to do.
     }
 
@@ -53,7 +53,7 @@
     abstract SearchRequest createSearchRequest(Connection connection, DN baseDN, String resourceId);
 
     /**
-     * Adds the name of any LDAP attribute required by this name strategy to the
+     * Adds the name of any LDAP attribute required by this naming strategy to the
      * provided set.
      *
      * @param connection
@@ -62,7 +62,7 @@
      *            The set into which any required LDAP attribute name should be
      *            put.
      */
-    abstract void getLDAPAttributes(Connection connection, Set<String> ldapAttributes);
+    abstract void getLdapAttributes(Connection connection, Set<String> ldapAttributes);
 
     /**
      * Retrieves the resource ID from the provided LDAP entry. Implementations

--
Gitblit v1.10.0