Lines Matching defs:LDIF

37  * LDAP Data Interchange Format (LDIF) is a file format used to
42 * TARGET="_blank">The LDAP Data Interchange Format (LDIF) -
46 * This class implements an LDIF file parser. You can construct
47 * an object of this class to parse data in LDIF format and
54 public class LDIF implements Serializable {
63 * Constructs an <CODE>LDIF</CODE> object to parse the
67 public LDIF() throws IOException {
76 * Constructs an <CODE>LDIF</CODE> object to parse the
77 * LDIF data read from a specified file.
78 * @param file the name of the LDIF file to parse
81 public LDIF(String file) throws IOException {
91 * Constructs an <CODE>LDIF</CODE> object to parse the
92 * LDIF data read from an input stream.
93 * @param dstThe input stream providing the LDIF data
96 public LDIF(DataInputStream ds) throws IOException {
104 * Returns the next record in the LDIF data. You can call this
105 * method repeatedly to iterate through all records in the LDIF data.
586 * String according to the LDIF specification. If not, the array should
589 * output as a String according to the LDIF specification; otherwise,
603 * Outputs the String in LDIF line-continuation format. No line will be longer
632 * Gets the version of LDIF used in the data.
633 * @return version of LDIF used in the data.
641 * entire LDIF file.
642 * @return the string representation of the entire LDIF data file.
645 return "LDIF {" + m_source + "}";
649 * Throws a LDIF file exception including the current line number.
742 * the LDIF rules (encode in base64 if necessary)
769 * Test driver - just reads and parses an LDIF file, printing
772 * @param args name of the LDIF file to parse
776 System.out.println( "Usage: java LDIF <FILENAME>" );
779 LDIF ldif = null;
781 ldif = new LDIF( args[0] );
783 System.err.println("Failed to read LDIF file " + args[0] +