1   /**
2    * Copyright (c) 2000-2009 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   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
12   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
14   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
15   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
16   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
17   * SOFTWARE.
18   */
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  /**
31   * <a href="SitemapPortletDataHandlerImpl.java.html"><b><i>View Source</i></b>
32   * </a>
33   *
34   * @author Bruno Farache
35   *
36   */
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  }