001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.journal.search;
016    
017    import com.liferay.portal.kernel.dao.search.DAOParamUtil;
018    import com.liferay.portal.kernel.util.ParamUtil;
019    import com.liferay.portal.theme.ThemeDisplay;
020    import com.liferay.portal.util.WebKeys;
021    
022    import javax.portlet.PortletRequest;
023    
024    /**
025     * @author Brian Wing Shun Chan
026     */
027    public class TemplateSearchTerms extends TemplateDisplayTerms {
028    
029            public TemplateSearchTerms(PortletRequest portletRequest) {
030                    super(portletRequest);
031    
032                    ThemeDisplay themeDisplay = (ThemeDisplay)portletRequest.getAttribute(
033                            WebKeys.THEME_DISPLAY);
034    
035                    description = DAOParamUtil.getLike(portletRequest, DESCRIPTION);
036                    groupId = ParamUtil.getLong(
037                            portletRequest, GROUP_ID, themeDisplay.getScopeGroupId());
038                    name = DAOParamUtil.getLike(portletRequest, NAME);
039                    structureId = DAOParamUtil.getString(portletRequest, STRUCTURE_ID);
040                    templateId = DAOParamUtil.getLike(portletRequest, TEMPLATE_ID);
041            }
042    
043            public String getStructureIdComparator() {
044                    return structureIdComparator;
045            }
046    
047            public void setGroupId(long groupId) {
048                    this.groupId = groupId;
049            }
050    
051            public void setStructureId(String structureId) {
052                    this.structureId = structureId;
053            }
054    
055            public void setStructureIdComparator(String structureIdComparator) {
056                    this.structureIdComparator = structureIdComparator;
057            }
058    
059            protected String structureIdComparator;
060    
061    }