/**
  * Appends a multi-line string representation of this backup info structure to the provided
  * buffer.
  *
  * @param buffer The buffer to which the information should be written.
  */
 public void toString(StringBuilder buffer) {
   LinkedList<String> lines = encode();
   for (String line : lines) {
     buffer.append(line);
     buffer.append(EOL);
   }
 }
Beispiel #2
0
 /**
  * Appends a string representation of this entry encode configuration to the provided buffer.
  *
  * @param buffer The buffer to which the information should be appended.
  */
 public void toString(StringBuilder buffer) {
   buffer.append("EntryEncodeConfig(excludeDN=");
   buffer.append(excludeDN);
   buffer.append(", compressAttrDescriptions=");
   buffer.append(compressAttrDescriptions);
   buffer.append(", compressObjectClassSets=");
   buffer.append(compressObjectClassSets);
   buffer.append(")");
 }
 /** {@inheritDoc} */
 @Override()
 public final void toString(StringBuilder buffer) {
   buffer.append("AbandonOperation(connID=");
   buffer.append(clientConnection.getConnectionID());
   buffer.append(", opID=");
   buffer.append(operationID);
   buffer.append(", idToAbandon=");
   buffer.append(idToAbandon);
   buffer.append(")");
 }
 /**
  * Retrieves a multi-line string representation of this backup info structure.
  *
  * @return A multi-line string representation of this backup info structure.
  */
 public String toString() {
   StringBuilder buffer = new StringBuilder();
   toString(buffer);
   return buffer.toString();
 }