com.netscape.certsrv.base
Interface IPrettyPrintFormat


public interface IPrettyPrintFormat

This class will display the certificate content in predefined format.

Version:
$Revision: 1211 $, $Date: 2010-08-18 10:15:37 -0700 (Wed, 18 Aug 2010) $

Method Summary
 java.lang.String toHexString(byte[] in)
          Retrieves a pretty print string of the given byte array.
 java.lang.String toHexString(byte[] in, int indentSize)
          Retrieves a pretty print string of the given byte array.
 java.lang.String toHexString(byte[] in, int indentSize, int lineLen)
          Retrieves a pretty print string of the given byte array.
 java.lang.String toHexString(byte[] in, int indentSize, int lineLen, java.lang.String separator)
          Retrieves a pretty print string of the given byte array.
 

Method Detail

toHexString

java.lang.String toHexString(byte[] in,
                             int indentSize,
                             int lineLen,
                             java.lang.String separator)
Retrieves a pretty print string of the given byte array.

Parameters:
in - byte array
indentSize - indentation size
lineLen - length of line
separator - separator string
Returns:
pretty print string

toHexString

java.lang.String toHexString(byte[] in,
                             int indentSize,
                             int lineLen)
Retrieves a pretty print string of the given byte array.

Parameters:
in - byte array
indentSize - indentation size
lineLen - length of line
Returns:
pretty print string

toHexString

java.lang.String toHexString(byte[] in,
                             int indentSize)
Retrieves a pretty print string of the given byte array.

Parameters:
in - byte array
indentSize - indentation size
Returns:
pretty print string

toHexString

java.lang.String toHexString(byte[] in)
Retrieves a pretty print string of the given byte array.

Parameters:
in - byte array
Returns:
pretty print string