001
014
015 package com.liferay.portlet.exportimport.search;
016
017 import com.liferay.portal.kernel.dao.search.DisplayTerms;
018 import com.liferay.portal.kernel.util.ParamUtil;
019
020 import javax.portlet.PortletRequest;
021
022
025 public class ExportImportConfigurationDisplayTerms extends DisplayTerms {
026
027 public static final String DESCRIPTION = "description";
028
029 public static final String NAME = "name";
030
031 public ExportImportConfigurationDisplayTerms(
032 PortletRequest portletRequest) {
033
034 super(portletRequest);
035
036 description = ParamUtil.getString(portletRequest, DESCRIPTION);
037 name = ParamUtil.getString(portletRequest, NAME);
038 }
039
040 public String getDescription() {
041 return description;
042 }
043
044 public String getName() {
045 return name;
046 }
047
048 protected String description;
049 protected String name;
050
051 }