001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
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 = "reserved-article-type";
069    
070            public static final String RESERVED_ARTICLE_URL_TITLE =
071                    "reserved-article-url-title";
072    
073            public static final String RESERVED_ARTICLE_VERSION =
074                    "reserved-article-version";
075    
076    }