13 lines
475 B
Java
Executable File
13 lines
475 B
Java
Executable File
package com.arsdigita.cms.webpage;
|
|
|
|
/**
|
|
* @author Peter Kopunec
|
|
*/
|
|
public interface WebpageConstants {
|
|
|
|
public static final String HEADER_ELEMENT = "webpage:header";//CWPage.PORTAL_HEADER_ELEMENT
|
|
public static final String BODY_ELEMENT = "webpage:body";//CWPage.PORTAL_BODY_ELEMENT
|
|
public static final String FOOTER_ELEMENT = "webpage:footer";//CWPage.PORTAL_FOOTER_ELEMENT
|
|
public static final String XML_NS = "http://www.undp.org/webpage/1.0";//CWPage.PORTAL_XML_NS
|
|
}
|