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