1 package de.webman.content.db;2 3 /**4 * The Content Instance Constants interface provides the column names of the5 * <CODE>CONTENT_INSTANCE</CODE> table.6 *7 * @author <A HREF="mailto:unl@webman.de">Ulrich Nicolas Lissé</A>,8 * © 2001 Webman AG.9 * @version $Revision: 1.2 $10 */11 public interface ContentInstanceConstants12 {13 // $Id: ContentInstanceConstants.java,v 1.2 2001/09/28 14:19:41 uli Exp $14 15 // Constants.16 17 /**18 * The <CODE>INSTANCE_ID</CODE> column.19 */20 String INSTANCE_ID = "INSTANCE_ID";21 22 /**23 * The <CODE>CONTENT_NODE_ID</CODE> column.24 */25 String CONTENT_NODE_ID = "CONTENT_NODE_ID";26 27 /**28 * The <CODE>NAME</CODE> column.29 */30 String NAME = "NAME";31 32 }33