Package com.unboundid.ldif
Class LDIFModifyDNChangeRecord
java.lang.Object
com.unboundid.ldif.LDIFChangeRecord
com.unboundid.ldif.LDIFModifyDNChangeRecord
- All Implemented Interfaces:
LDIFRecord,Serializable
@NotMutable
@ThreadSafety(level=COMPLETELY_THREADSAFE)
public final class LDIFModifyDNChangeRecord
extends LDIFChangeRecord
This class defines an LDIF modify DN change record, which can be used to
represent an LDAP modify DN request. See the documentation for the
LDIFChangeRecord class for an example demonstrating the process for
interacting with LDIF change records.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionLDIFModifyDNChangeRecord(ModifyDNRequest modifyDNRequest) Creates a new LDIF modify DN change record from the provided modify DN request.LDIFModifyDNChangeRecord(String dn, String newRDN, boolean deleteOldRDN, String newSuperiorDN) Creates a new LDIF modify DN change record with the provided information.LDIFModifyDNChangeRecord(String dn, String newRDN, boolean deleteOldRDN, String newSuperiorDN, List<Control> controls) Creates a new LDIF modify DN change record with the provided information. -
Method Summary
Modifier and TypeMethodDescriptionbooleanIndicates whether to delete the current RDN value from the entry.Creates a duplicate of this LDIF change record with the provided set of controls.booleanIndicates whether the provided object is equal to this LDIF change record.Retrieves the type of operation represented by this LDIF change record.getNewDN()Retrieves the DN that the entry should have after the successful completion of the operation.Retrieves the new RDN value for the entry.Retrieves the new superior DN for the entry, if applicable.Retrieves the parsed new RDN value for the entry.Retrieves the parsed new superior DN for the entry, if applicable.inthashCode()Retrieves a hash code for this change record.processChange(LDAPInterface connection, boolean includeControls) Apply the change represented by this LDIF change record to a directory server using the provided connection, optionally including any change record controls in the request.String[]toLDIF(int wrapColumn) Retrieves a string array whose lines contain an LDIF representation of this change record.voidtoLDIF(ByteStringBuffer buffer, int wrapColumn) Appends an LDIF string representation of this change record to the provided buffer.voidtoLDIFString(StringBuilder buffer, int wrapColumn) Appends an LDIF string representation of this change record to the provided buffer.Creates a modify DN request from this LDIF modify DN change record.toModifyDNRequest(boolean includeControls) Creates a modify DN request from this LDIF modify DN change record, optionally including any change record controls in the request.voidtoString(StringBuilder buffer) Appends a single-line string representation of this change record to the provided buffer.Methods inherited from class com.unboundid.ldif.LDIFChangeRecord
getControls, getDN, getParsedDN, processChange, toLDIF, toLDIF, toLDIFString, toLDIFString, toLDIFString, toString
-
Constructor Details
-
LDIFModifyDNChangeRecord
public LDIFModifyDNChangeRecord(@NotNull String dn, @NotNull String newRDN, boolean deleteOldRDN, @Nullable String newSuperiorDN) Creates a new LDIF modify DN change record with the provided information.- Parameters:
dn- The current DN for the entry. It must not benull.newRDN- The new RDN value for the entry. It must not benull.deleteOldRDN- Indicates whether to delete the currentRDN value from the entry.newSuperiorDN- The new superior DN for this LDIF modify DN change record. It may benullif the entry is not to be moved below a new parent.
-
LDIFModifyDNChangeRecord
public LDIFModifyDNChangeRecord(@NotNull String dn, @NotNull String newRDN, boolean deleteOldRDN, @Nullable String newSuperiorDN, @Nullable List<Control> controls) Creates a new LDIF modify DN change record with the provided information.- Parameters:
dn- The current DN for the entry. It must not benull.newRDN- The new RDN value for the entry. It must not benull.deleteOldRDN- Indicates whether to delete the currentRDN value from the entry.newSuperiorDN- The new superior DN for this LDIF modify DN change record. It may benullif the entry is not to be moved below a new parent.controls- The set of controls for this LDIF modify DN change record. It may benullor empty if there are no controls.
-
LDIFModifyDNChangeRecord
Creates a new LDIF modify DN change record from the provided modify DN request.- Parameters:
modifyDNRequest- The modify DN request to use to create this LDIF modify DN change record. It must not benull.
-
-
Method Details
-
getNewRDN
Retrieves the new RDN value for the entry.- Returns:
- The new RDN value for the entry.
-
getParsedNewRDN
Retrieves the parsed new RDN value for the entry.- Returns:
- The parsed new RDN value for the entry.
- Throws:
LDAPException- If a problem occurs while trying to parse the new RDN.
-
deleteOldRDN
Indicates whether to delete the current RDN value from the entry.- Returns:
trueif the current RDN value should be removed from the entry, orfalseif not.
-
getNewSuperiorDN
Retrieves the new superior DN for the entry, if applicable.- Returns:
- The new superior DN for the entry, or
nullif the entry is not to be moved below a new parent.
-
getParsedNewSuperiorDN
Retrieves the parsed new superior DN for the entry, if applicable.- Returns:
- The parsed new superior DN for the entry, or
nullif the entry is not to be moved below a new parent. - Throws:
LDAPException- If a problem occurs while trying to parse the new superior DN.
-
getNewDN
Retrieves the DN that the entry should have after the successful completion of the operation.- Returns:
- The DN that the entry should have after the successful completion of the operation.
- Throws:
LDAPException- If a problem occurs while trying to parse the target DN, new RDN, or new superior DN.
-
toModifyDNRequest
Creates a modify DN request from this LDIF modify DN change record. Any change record controls will be included in the request- Returns:
- The modify DN request created from this LDIF modify DN change record.
-
toModifyDNRequest
Creates a modify DN request from this LDIF modify DN change record, optionally including any change record controls in the request.- Parameters:
includeControls- Indicates whether to include any controls in the request.- Returns:
- The modify DN request created from this LDIF modify DN change record.
-
getChangeType
Retrieves the type of operation represented by this LDIF change record.- Specified by:
getChangeTypein classLDIFChangeRecord- Returns:
- The type of operation represented by this LDIF change record.
-
duplicate
Creates a duplicate of this LDIF change record with the provided set of controls.- Specified by:
duplicatein classLDIFChangeRecord- Parameters:
controls- The set of controls to include in the duplicate change record. It may benullor empty if no controls should be included.- Returns:
- A duplicate of this LDIF change record with the provided set of controls.
-
processChange
@NotNull public LDAPResult processChange(@NotNull LDAPInterface connection, boolean includeControls) throws LDAPException Apply the change represented by this LDIF change record to a directory server using the provided connection, optionally including any change record controls in the request.- Specified by:
processChangein classLDIFChangeRecord- Parameters:
connection- The connection to use to apply the change.includeControls- Indicates whether to include any controls in the request.- Returns:
- An object providing information about the result of the operation.
- Throws:
LDAPException- If an error occurs while processing this change in the associated directory server.
-
toLDIF
Retrieves a string array whose lines contain an LDIF representation of this change record.- Specified by:
toLDIFin interfaceLDIFRecord- Specified by:
toLDIFin classLDIFChangeRecord- Parameters:
wrapColumn- The column at which to wrap long lines. A value that is less than or equal to two indicates that no wrapping should be performed.- Returns:
- A string array whose lines contain an LDIF representation of this change record.
-
toLDIF
Appends an LDIF string representation of this change record to the provided buffer.- Specified by:
toLDIFin interfaceLDIFRecord- Specified by:
toLDIFin classLDIFChangeRecord- Parameters:
buffer- The buffer to which to append an LDIF representation of this change record.wrapColumn- The column at which to wrap long lines. A value that is less than or equal to two indicates that no wrapping should be performed.
-
toLDIFString
Appends an LDIF string representation of this change record to the provided buffer.- Specified by:
toLDIFStringin interfaceLDIFRecord- Specified by:
toLDIFStringin classLDIFChangeRecord- Parameters:
buffer- The buffer to which to append an LDIF representation of this change record.wrapColumn- The column at which to wrap long lines. A value that is less than or equal to two indicates that no wrapping should be performed.
-
hashCode
Retrieves a hash code for this change record.- Specified by:
hashCodein classLDIFChangeRecord- Returns:
- A hash code for this change record.
-
equals
Indicates whether the provided object is equal to this LDIF change record.- Specified by:
equalsin classLDIFChangeRecord- Parameters:
o- The object for which to make the determination.- Returns:
trueif the provided object is equal to this LDIF change record, orfalseif not.
-
toString
Appends a single-line string representation of this change record to the provided buffer.- Specified by:
toStringin interfaceLDIFRecord- Specified by:
toStringin classLDIFChangeRecord- Parameters:
buffer- The buffer to which the information should be written.
-