1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.journal.model;
16  
17  /**
18   * <a href="JournalStructureConstants.java.html"><b><i>View Source</i></b></a>
19   *
20   * @author Alexander Chow
21   */
22  public class JournalStructureConstants {
23  
24      public static final String RESERVED = "reserved";
25  
26      public static final String RESERVED_ARTICLE_ASSET_TAG_NAMES =
27          "reserved-article-asset-tag-names";
28  
29      public static final String RESERVED_ARTICLE_AUTHOR_COMMENTS =
30          "reserved-article-author-comments";
31  
32      public static final String RESERVED_ARTICLE_AUTHOR_EMAIL_ADDRESS =
33          "reserved-article-author-email-address";
34  
35      public static final String RESERVED_ARTICLE_AUTHOR_ID =
36          "reserved-article-author-id";
37  
38      public static final String RESERVED_ARTICLE_AUTHOR_JOB_TITLE =
39          "reserved-article-author-job-title";
40  
41      public static final String RESERVED_ARTICLE_AUTHOR_LOCATION =
42          "reserved-article-author-location";
43  
44      public static final String RESERVED_ARTICLE_AUTHOR_NAME =
45          "reserved-article-author-name";
46  
47      public static final String RESERVED_ARTICLE_AUTHOR_ORGANIZATION =
48          "reserved-article-author-organization";
49  
50      public static final String RESERVED_ARTICLE_CREATE_DATE =
51          "reserved-article-create-date";
52  
53      public static final String RESERVED_ARTICLE_DESCRIPTION =
54          "reserved-article-description";
55  
56      public static final String RESERVED_ARTICLE_DISPLAY_DATE =
57          "reserved-article-display-date";
58  
59      public static final String RESERVED_ARTICLE_ID = "reserved-article-id";
60  
61      public static final String RESERVED_ARTICLE_MODIFIED_DATE =
62          "reserved-article-modified-date";
63  
64      public static final String RESERVED_ARTICLE_SMALL_IMAGE_URL =
65          "reserved-article-small-image-url";
66  
67      public static final String RESERVED_ARTICLE_TITLE =
68          "reserved-article-title";
69  
70      public static final String RESERVED_ARTICLE_TYPE =
71          "reserved-article-type";
72  
73      public static final String RESERVED_ARTICLE_URL_TITLE =
74          "reserved-article-url-title";
75  
76      public static final String RESERVED_ARTICLE_VERSION =
77          "reserved-article-version";
78  
79  }