1
14
15 package com.liferay.portal.kernel.portlet;
16
17 import javax.portlet.PortletMode;
18
19
24 public class LiferayPortletMode extends PortletMode {
25
26 public static final PortletMode ABOUT = new PortletMode("about");
27
28 public static final PortletMode CONFIG = new PortletMode("config");
29
30 public static final PortletMode EDIT_DEFAULTS =
31 new PortletMode("edit_defaults");
32
33 public static final PortletMode EDIT_GUEST = new PortletMode("edit_guest");
34
35 public static final PortletMode PREVIEW = new PortletMode("preview");
36
37 public static final PortletMode PRINT = new PortletMode("print");
38
39 public LiferayPortletMode(String name) {
40 super(name);
41 }
42
43 }