001
014
015 package com.liferay.portlet.assetpublisher.search;
016
017 import com.liferay.portal.kernel.dao.search.DAOParamUtil;
018 import com.liferay.portal.kernel.util.ParamUtil;
019
020 import javax.portlet.PortletRequest;
021
022
026 public class AssetSearchTerms extends AssetDisplayTerms {
027
028 public AssetSearchTerms(PortletRequest portletRequest) {
029 super(portletRequest);
030
031 description = DAOParamUtil.getLike(portletRequest, DESCRIPTION);
032 groupId = ParamUtil.getLong(portletRequest, GROUP_ID);
033 title = DAOParamUtil.getLike(portletRequest, TITLE);
034 userName = DAOParamUtil.getLike(portletRequest, USER_NAME);
035 }
036
037 public void setGroupId(long groupId) {
038 this.groupId = groupId;
039 }
040
041 }