01: package de.webman.content.db;
02:
03: /**
04: * The Structured Content Constants interface provides the column names of the
05: * <CODE>STRUTURED_CONTENT</CODE> table.
06: *
07: * @author <A HREF="mailto:unl@webman.de">Ulrich Nicolas Lissé</A>,
08: * © 2001 Webman AG.
09: * @version $Revision: 1.1 $
10: */
11: public interface StructuredContentConstants {
12: // $Id: StructuredContentConstants.java,v 1.1 2001/09/28 14:19:41 uli Exp $
13:
14: // Constants.
15:
16: /**
17: * The <CODE>SITE_NODE_ID</CODE> column.
18: */
19: String SITE_NODE_ID = "SITE_NODE_ID";
20:
21: /**
22: * The <CODE>FORM_ID</CODE> column.
23: */
24: String FORM_ID = "FORM_ID";
25:
26: /**
27: * The <CODE>CONTENT_ID</CODE> column.
28: */
29: String CONTENT_ID = "CONTENT_ID";
30:
31: }
|