Class DefaultTempEntryRenamingStrategy

java.lang.Object
org.springframework.ldap.transaction.compensating.support.DefaultTempEntryRenamingStrategy
All Implemented Interfaces:
TempEntryRenamingStrategy

public class DefaultTempEntryRenamingStrategy extends Object implements TempEntryRenamingStrategy
Default implementation of TempEntryRenamingStrategy. This implementation simply adds "_temp" to the leftmost (least significant part) of the name. For example:
 cn=john doe, ou=company1, c=SE
 
becomes:
 cn=john doe_temp, ou=company1, c=SE
 

Note that using this strategy means that the entry remains in virtually the same location as where it originally resided. This means that searches later in the same transaction might return references to the temporary entry even though it should have been removed or rebound.

Since:
1.2
  • Field Details

    • DEFAULT_TEMP_SUFFIX

      public static final String DEFAULT_TEMP_SUFFIX
      The default temp entry suffix, "_temp".
      See Also:
  • Constructor Details

    • DefaultTempEntryRenamingStrategy

      public DefaultTempEntryRenamingStrategy()
  • Method Details

    • getTemporaryName

      public Name getTemporaryName(Name originalName)
      Description copied from interface: TempEntryRenamingStrategy
      Get a temporary name for the current entry to be renamed to.
      Specified by:
      getTemporaryName in interface TempEntryRenamingStrategy
      Parameters:
      originalName - The original name of the entry.
      Returns:
      The name to which the entry should be temporarily renamed according to this strategy.
    • getTempSuffix

      public String getTempSuffix()
      Get the suffix that will be used for renaming temporary entries.
      Returns:
      the suffix.
    • setTempSuffix

      public void setTempSuffix(String tempSuffix)
      Set the suffix to use for renaming temporary entries. Default value is DEFAULT_TEMP_SUFFIX.
      Parameters:
      tempSuffix - the suffix.