Package com.unboundid.ldif
Class LDIFDeleteChangeRecord
- java.lang.Object
-
- com.unboundid.ldif.LDIFChangeRecord
-
- com.unboundid.ldif.LDIFDeleteChangeRecord
-
- All Implemented Interfaces:
LDIFRecord,java.io.Serializable
@NotMutable @ThreadSafety(level=COMPLETELY_THREADSAFE) public final class LDIFDeleteChangeRecord extends LDIFChangeRecord
This class defines an LDIF delete change record, which can be used to represent an LDAP delete request. See the documentation for theLDIFChangeRecordclass for an example demonstrating the process for interacting with LDIF change records.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LDIFDeleteChangeRecord(DeleteRequest deleteRequest)Creates a new LDIF delete change record from the provided delete request.LDIFDeleteChangeRecord(java.lang.String dn)Creates a new LDIF delete change record with the provided DN.LDIFDeleteChangeRecord(java.lang.String dn, java.util.List<Control> controls)Creates a new LDIF delete change record with the provided DN.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LDIFDeleteChangeRecordduplicate(Control... controls)Creates a duplicate of this LDIF change record with the provided set of controls.booleanequals(java.lang.Object o)Indicates whether the provided object is equal to this LDIF change record.ChangeTypegetChangeType()Retrieves the type of operation represented by this LDIF change record.inthashCode()Retrieves a hash code for this change record.LDAPResultprocessChange(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.DeleteRequesttoDeleteRequest()Creates a delete request from this LDIF delete change record.DeleteRequesttoDeleteRequest(boolean includeControls)Creates a delete request from this LDIF delete change record, optionally including any change record controls in the request.java.lang.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(java.lang.StringBuilder buffer, int wrapColumn)Appends an LDIF string representation of this change record to the provided buffer.voidtoString(java.lang.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 Detail
-
LDIFDeleteChangeRecord
public LDIFDeleteChangeRecord(@NotNull java.lang.String dn)
Creates a new LDIF delete change record with the provided DN.- Parameters:
dn- The DN of the entry to delete. It must not benull.
-
LDIFDeleteChangeRecord
public LDIFDeleteChangeRecord(@NotNull java.lang.String dn, @Nullable java.util.List<Control> controls)
Creates a new LDIF delete change record with the provided DN.- Parameters:
dn- The DN of the entry to delete. It must not benull.controls- The set of controls for this LDIF delete change record. It may benullor empty if there are no controls.
-
LDIFDeleteChangeRecord
public LDIFDeleteChangeRecord(@NotNull DeleteRequest deleteRequest)
Creates a new LDIF delete change record from the provided delete request.- Parameters:
deleteRequest- The delete request to use to create this LDIF delete change record. It must not benull.
-
-
Method Detail
-
toDeleteRequest
@NotNull public DeleteRequest toDeleteRequest()
Creates a delete request from this LDIF delete change record. Any change record controls will be included in the request- Returns:
- The delete request created from this LDIF delete change record.
-
toDeleteRequest
@NotNull public DeleteRequest toDeleteRequest(boolean includeControls)
Creates a delete request from this LDIF delete change record, optionally including any change record controls in the request.- Parameters:
includeControls- Indicates whether to include any controls in the request.- Returns:
- The delete request created from this LDIF delete change record.
-
getChangeType
@NotNull public ChangeType 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
@NotNull public LDIFDeleteChangeRecord duplicate(@Nullable Control... controls)
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
@NotNull public java.lang.String[] toLDIF(int wrapColumn)
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
public void toLDIF(@NotNull ByteStringBuffer buffer, int wrapColumn)
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
public void toLDIFString(@NotNull java.lang.StringBuilder buffer, int wrapColumn)
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
public int hashCode()
Retrieves a hash code for this change record.- Specified by:
hashCodein classLDIFChangeRecord- Returns:
- A hash code for this change record.
-
equals
public boolean equals(@Nullable java.lang.Object o)
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
public void toString(@NotNull java.lang.StringBuilder buffer)
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.
-
-