KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > de > webman > content > db > StructuredContentConstants


1 package de.webman.content.db;
2
3 /**
4  * The Structured Content Constants interface provides the column names of the
5  * <CODE>STRUTURED_CONTENT</CODE> table.
6  *
7  * @author <A HREF="mailto:unl@webman.de">Ulrich Nicolas Liss&eacute;</A>,
8  * &copy; 2001 Webman AG.
9  * @version $Revision: 1.1 $
10  */

11 public interface StructuredContentConstants
12 {
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 JavaDoc SITE_NODE_ID = "SITE_NODE_ID";
21
22     /**
23      * The <CODE>FORM_ID</CODE> column.
24      */

25     String JavaDoc FORM_ID = "FORM_ID";
26
27     /**
28      * The <CODE>CONTENT_ID</CODE> column.
29      */

30     String JavaDoc CONTENT_ID = "CONTENT_ID";
31
32 }
33
Popular Tags