|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.opends.server.types.LDIFImportResult
@PublicAPI(stability=VOLATILE, mayInstantiate=false, mayExtend=false, mayInvoke=true) public final class LDIFImportResult
This class defines a data structure for providing information about the state of a completed LDIF import, including the total number of entries read, skipped, and rejected.
Constructor Summary | |
---|---|
LDIFImportResult(long entriesRead,
long entriesRejected,
long entriesSkipped)
Creates a new LDIF import result object with the provided information. |
Method Summary | |
---|---|
long |
getEntriesImported()
Retrieves the total number of entries that were successfully imported. |
long |
getEntriesRead()
Retrieves the total number of entries read during the import, including those that were later rejected or skipped. |
long |
getEntriesRejected()
Retrieves the total number of entries rejected during the import. |
long |
getEntriesSkipped()
Retrieves the total number of entries skipped during the import. |
java.lang.String |
toString()
Retrieves a string representation of this LDIF import result object. |
void |
toString(java.lang.StringBuilder buffer)
Appends a string representation of this LDIF import result object to the provided buffer. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public LDIFImportResult(long entriesRead, long entriesRejected, long entriesSkipped)
entriesRead
- The total number of entries read
during the import, including those that
were later rejected or skipped.entriesRejected
- The total number of entries rejected
during the import.entriesSkipped
- The total number of entries skipped
during the import.Method Detail |
---|
public long getEntriesRead()
public long getEntriesImported()
public long getEntriesRejected()
public long getEntriesSkipped()
public java.lang.String toString()
toString
in class java.lang.Object
public void toString(java.lang.StringBuilder buffer)
buffer
- The buffer to which the information should be
appended.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |