1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   * 
13   */
14  
15  package com.liferay.portlet.journal.model.impl;
16  
17  import com.liferay.portlet.journal.model.JournalStructure;
18  
19  /**
20   * <a href="JournalStructureImpl.java.html"><b><i>View Source</i></b></a>
21   *
22   * @author Brian Wing Shun Chan
23   */
24  public class JournalStructureImpl
25      extends JournalStructureModelImpl implements JournalStructure {
26  
27      public static final String RESERVED = "reserved";
28  
29      public static final String RESERVED_ARTICLE_ASSET_TAG_NAMES =
30          "reserved-article-asset-tag-names";
31  
32      public static final String RESERVED_ARTICLE_AUTHOR_COMMENTS =
33          "reserved-article-author-comments";
34  
35      public static final String RESERVED_ARTICLE_AUTHOR_EMAIL_ADDRESS =
36          "reserved-article-author-email-address";
37  
38      public static final String RESERVED_ARTICLE_AUTHOR_ID =
39          "reserved-article-author-id";
40  
41      public static final String RESERVED_ARTICLE_AUTHOR_JOB_TITLE =
42          "reserved-article-author-job-title";
43  
44      public static final String RESERVED_ARTICLE_AUTHOR_LOCATION =
45          "reserved-article-author-location";
46  
47      public static final String RESERVED_ARTICLE_AUTHOR_NAME =
48          "reserved-article-author-name";
49  
50      public static final String RESERVED_ARTICLE_AUTHOR_ORGANIZATION =
51          "reserved-article-author-organization";
52  
53      public static final String RESERVED_ARTICLE_CREATE_DATE =
54          "reserved-article-create-date";
55  
56      public static final String RESERVED_ARTICLE_DESCRIPTION =
57          "reserved-article-description";
58  
59      public static final String RESERVED_ARTICLE_DISPLAY_DATE =
60          "reserved-article-display-date";
61  
62      public static final String RESERVED_ARTICLE_ID = "reserved-article-id";
63  
64      public static final String RESERVED_ARTICLE_MODIFIED_DATE =
65          "reserved-article-modified-date";
66  
67      public static final String RESERVED_ARTICLE_SMALL_IMAGE_URL =
68          "reserved-article-small-image-url";
69  
70      public static final String RESERVED_ARTICLE_TITLE =
71          "reserved-article-title";
72  
73      public static final String RESERVED_ARTICLE_TYPE =
74          "reserved-article-type";
75  
76      public static final String RESERVED_ARTICLE_VERSION =
77          "reserved-article-version";
78  
79      public JournalStructureImpl() {
80      }
81  
82  }