mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

neil_a_wilson
16.53.2006 02b3d002fe4bfc3fef076a35184af06b8d37e2cc
Change the name of the "finalizeIdentityManager" method in the
org.opends.server.api.IdentityMapper class to be "finalizeIdentityMapper".

OpenDS Issue Number: 662
3 files modified
8 ■■■■ changed files
opends/src/server/org/opends/server/api/IdentityMapper.java 2 ●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/core/IdentityMapperConfigManager.java 4 ●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/extensions/ExactMatchIdentityMapper.java 2 ●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/api/IdentityMapper.java
@@ -84,7 +84,7 @@
   * Performs any finalization that may be necessary for this identity
   * mapper.  By default, no finalization is performed.
   */
  public void finalizeIdentityManager()
  public void finalizeIdentityMapper()
  {
    assert debugEnter(CLASS_NAME, "finalizeIdentityMapper");
opends/src/server/org/opends/server/core/IdentityMapperConfigManager.java
@@ -447,7 +447,7 @@
          // The identity mapper is active, so it needs to be disabled.  Do this
          // and return that we were successful.
          identityMappers.remove(configEntryDN);
          mapper.finalizeIdentityManager();
          mapper.finalizeIdentityMapper();
          DirectoryServer.deregisterIdentityMapper(configEntryDN);
          return new ConfigChangeResult(resultCode, adminActionRequired,
                                        messages);
@@ -950,7 +950,7 @@
    IdentityMapper identityMapper = identityMappers.remove(configEntryDN);
    if (identityMapper != null)
    {
      identityMapper.finalizeIdentityManager();
      identityMapper.finalizeIdentityMapper();
    }
opends/src/server/org/opends/server/extensions/ExactMatchIdentityMapper.java
@@ -247,7 +247,7 @@
  /**
   * Performs any finalization that may be necessary for this identity mapper.
   */
  public void finalizeIdentityManager()
  public void finalizeIdentityMapper()
  {
    assert debugEnter(CLASS_NAME, "finalizeIdentityMapper");