1
19
20 package com.liferay.portlet.sitemap.lar;
21
22 import com.liferay.portal.kernel.util.StringPool;
23 import com.liferay.portal.lar.BasePortletDataHandler;
24 import com.liferay.portal.lar.PortletDataContext;
25 import com.liferay.portal.lar.PortletDataException;
26 import com.liferay.portal.lar.PortletDataHandlerControl;
27
28 import javax.portlet.PortletPreferences;
29
30
37 public class SitemapPortletDataHandlerImpl extends BasePortletDataHandler {
38
39 public PortletPreferences deleteData(
40 PortletDataContext context, String portletId,
41 PortletPreferences preferences)
42 throws PortletDataException {
43
44 try {
45 preferences.setValue("root-layout-id", StringPool.BLANK);
46 preferences.setValue("display-depth", StringPool.BLANK);
47 preferences.setValue("include-root-in-tree", StringPool.BLANK);
48 preferences.setValue("show-current-page", StringPool.BLANK);
49 preferences.setValue("use-html-title", StringPool.BLANK);
50 preferences.setValue("show-hidden-pages", StringPool.BLANK);
51
52 return preferences;
53 }
54 catch (Exception e) {
55 throw new PortletDataException(e);
56 }
57 }
58
59 public String exportData(
60 PortletDataContext context, String portletId,
61 PortletPreferences preferences) {
62
63 return StringPool.BLANK;
64 }
65
66 public PortletDataHandlerControl[] getExportControls() {
67 return new PortletDataHandlerControl[0];
68 }
69
70 public PortletDataHandlerControl[] getImportControls() {
71 return new PortletDataHandlerControl[0];
72 }
73
74 public PortletPreferences importData(
75 PortletDataContext context, String portletId,
76 PortletPreferences preferences, String data) {
77
78 return preferences;
79 }
80
81 public boolean isPublishToLiveByDefault() {
82 return _PUBLISH_TO_LIVE_BY_DEFAULT;
83 }
84
85 private static final boolean _PUBLISH_TO_LIVE_BY_DEFAULT = true;
86
87 }