Package netscape.ldap.util

Examples of netscape.ldap.util.LDIFContent


     */
    private void processRecord(final LDAPConnection connection,
        final LDIFRecord record)
        throws LDAPException
    {
        final LDIFContent content = record.getContent();
        final int contentType = content.getType();
        switch (contentType)
        {
            case LDIFContent.MODDN_CONTENT:
                this.renameEntry(connection, record.getDN(),
                    (LDIFModDNContent)content);
View Full Code Here


     * @param record     The parsed record.
     * @throws LDAPException If there was an LDAP error.
     */
    private void processRecord(final LDAPConnection connection,
                               final LDIFRecord record) throws LDAPException {
        final LDIFContent content = record.getContent();
        final int contentType = content.getType();
        switch (contentType) {
            case LDIFContent.MODDN_CONTENT:
                this.renameEntry(connection, record.getDN(), (LDIFModDNContent) content);
                break;
            case LDIFContent.MODIFICATION_CONTENT:
View Full Code Here

TOP

Related Classes of netscape.ldap.util.LDIFContent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.