package de.webman.content.db;
/**
* The Content Constants interface provides the column names of the
* <CODE>CONTENT</CODE> table.
*
* @author <A HREF="mailto:unl@webman.de">Ulrich Nicolas Lissé</A>,
* © 2001 Webman AG.
* @version $Revision: 1.2 $
*/
public interface ContentConstants
{
// $Id: ContentConstants.java,v 1.2 2001/09/28 14:19:41 uli Exp $
// Constants.
/**
* The <CODE>CONTENT_ID</CODE> column.
*/
String CONTENT_ID = "CONTENT_ID";
/**
* The <CODE>XML_TEXT</CODE> column.
*/
String XML_TEXT = "XML_TEXT";
}
|