001
014
015 package com.liferay.portlet.journal.model;
016
017 import com.liferay.portal.kernel.util.PropsKeys;
018 import com.liferay.portal.kernel.util.PropsUtil;
019 import com.liferay.portal.kernel.workflow.WorkflowConstants;
020
021
024 public class JournalArticleConstants {
025
026 public static final int[] ASSET_ENTRY_CREATION_STATUSES = {
027 WorkflowConstants.STATUS_APPROVED, WorkflowConstants.STATUS_EXPIRED
028 };
029
030 public static final String CANONICAL_URL_SEPARATOR = "/-/";
031
032 public static final String PORTLET = "portlet";
033
034 public static final String STAND_ALONE = "stand-alone";
035
036 public static final String[] TYPES = PropsUtil.getArray(
037 PropsKeys.JOURNAL_ARTICLE_TYPES);
038
039 public static final double VERSION_DEFAULT = 1.0;
040
041 }