001
014
015 package com.liferay.portlet.journal.search;
016
017 import com.liferay.portal.kernel.dao.search.DAOParamUtil;
018
019 import javax.portlet.PortletRequest;
020
021
024 public class StructureSearchTerms extends StructureDisplayTerms {
025
026 public StructureSearchTerms(PortletRequest portletRequest) {
027 super(portletRequest);
028
029 description = DAOParamUtil.getString(portletRequest, DESCRIPTION);
030 groupIds = setGroupIds(portletRequest);
031 name = DAOParamUtil.getString(portletRequest, NAME);
032 structureId = DAOParamUtil.getString(portletRequest, STRUCTURE_ID);
033 }
034
035 public void setGroupIds(long[] groupIds) {
036 this.groupIds = groupIds;
037 }
038
039 }