/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- * * The contents of this file are subject to the Netscape Public License * Version 1.0 (the "NPL"); you may not use this file except in * compliance with the NPL. You may obtain a copy of the NPL at * http://www.mozilla.org/NPL/ * * Software distributed under the NPL is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL * for the specific language governing rights and limitations under the * NPL. * * The Initial Developer of this code under the NPL is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998 Netscape Communications Corporation. All Rights * Reserved. */ package netscape.ldap.util; import java.util.*; import netscape.ldap.client.*; import java.io.*; /** * This interface represents the content of an LDIF record. * An LDIF record can specify an entry or modifications to be * made to an entry. *
* * The following classes implement this interface: *
* *
LDIFAttributeContent (represents the content
* of an LDIF record that specifies an entry)
* LDIFAddContent (represents the content
* of an LDIF record that adds a new entry)
* LDIFModifyContent (represents the content
* of an LDIF record that modifies an entry)
* LDIFDeleteContent (represents the content
* of an LDIF record that deletes an entry)
* LDIFModDNContent (represents the content
* of an LDIF record that changes the RDN or DN of an entry)
* * * @version 1.0 * @see netscape.ldap.LDIFRecord * @see netscape.ldap.LDIFAttrContent * @see netscape.ldap.LDIFAddContent * @see netscape.ldap.LDIFModifyContent * @see netscape.ldap.LDIFDeleteContent * @see netscape.ldap.LDIFModDNContent */ public interface LDIFContent { /** * The LDIF record specifies an entry and its attributes. */ public final static int ATTRIBUTE_CONTENT = 0; /** * The LDIF record specifies a new entry to be added. */ public final static int ADD_CONTENT = 1; /** * The LDIF record specifies an entry to be deleted. */ public final static int DELETE_CONTENT = 2; /** * The LDIF record specifies modifications to an entry. */ public final static int MODIFICATION_CONTENT = 3; /** * The LDIF record specifies changes to the DN or RDN of an entry. */ public final static int MODDN_CONTENT = 4; /** * Determine the content type. * @return The content type, identified by one of the following values: *