001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portlet.journal.model;
016    
017    /**
018     * @author Alexander Chow
019     */
020    public class JournalStructureConstants {
021    
022            public static final String RESERVED = "reserved";
023    
024            public static final String RESERVED_ARTICLE_ASSET_TAG_NAMES =
025                    "reserved-article-asset-tag-names";
026    
027            public static final String RESERVED_ARTICLE_AUTHOR_COMMENTS =
028                    "reserved-article-author-comments";
029    
030            public static final String RESERVED_ARTICLE_AUTHOR_EMAIL_ADDRESS =
031                    "reserved-article-author-email-address";
032    
033            public static final String RESERVED_ARTICLE_AUTHOR_ID =
034                    "reserved-article-author-id";
035    
036            public static final String RESERVED_ARTICLE_AUTHOR_JOB_TITLE =
037                    "reserved-article-author-job-title";
038    
039            public static final String RESERVED_ARTICLE_AUTHOR_LOCATION =
040                    "reserved-article-author-location";
041    
042            public static final String RESERVED_ARTICLE_AUTHOR_NAME =
043                    "reserved-article-author-name";
044    
045            public static final String RESERVED_ARTICLE_AUTHOR_ORGANIZATION =
046                    "reserved-article-author-organization";
047    
048            public static final String RESERVED_ARTICLE_CREATE_DATE =
049                    "reserved-article-create-date";
050    
051            public static final String RESERVED_ARTICLE_DESCRIPTION =
052                    "reserved-article-description";
053    
054            public static final String RESERVED_ARTICLE_DISPLAY_DATE =
055                    "reserved-article-display-date";
056    
057            public static final String RESERVED_ARTICLE_ID = "reserved-article-id";
058    
059            public static final String RESERVED_ARTICLE_MODIFIED_DATE =
060                    "reserved-article-modified-date";
061    
062            public static final String RESERVED_ARTICLE_SMALL_IMAGE_URL =
063                    "reserved-article-small-image-url";
064    
065            public static final String RESERVED_ARTICLE_TITLE =
066                    "reserved-article-title";
067    
068            public static final String RESERVED_ARTICLE_TYPE =
069                    "reserved-article-type";
070    
071            public static final String RESERVED_ARTICLE_URL_TITLE =
072                    "reserved-article-url-title";
073    
074            public static final String RESERVED_ARTICLE_VERSION =
075                    "reserved-article-version";
076    
077    }