/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.portal.workflow.instance.web.internal.search; import com.liferay.portal.kernel.dao.search.DisplayTerms; import com.liferay.portal.kernel.dao.search.SearchContainer; import com.liferay.portal.kernel.portlet.PortalPreferences; import com.liferay.portal.kernel.portlet.PortletPreferencesFactoryUtil; import com.liferay.portal.kernel.util.OrderByComparator; import com.liferay.portal.kernel.util.ParamUtil; import com.liferay.portal.kernel.util.PortletKeys; import com.liferay.portal.kernel.util.Validator; import com.liferay.portal.kernel.workflow.WorkflowInstance; import com.liferay.portal.workflow.instance.web.internal.util.WorkflowInstancePortletUtil; import java.util.ArrayList; import java.util.List; import javax.portlet.PortletRequest; import javax.portlet.PortletURL; /** * @author Leonardo Barros */ public class WorkflowInstanceSearch extends SearchContainer<WorkflowInstance> { public static List<String> headerNames = new ArrayList<>(); static { headerNames.add("asset-title"); headerNames.add("asset-type"); headerNames.add("status"); headerNames.add("definition"); headerNames.add("last-activity-date"); headerNames.add("end-date"); } public WorkflowInstanceSearch( PortletRequest portletRequest, PortletURL iteratorURL) { super( portletRequest, new DisplayTerms(portletRequest), null, DEFAULT_CUR_PARAM, DEFAULT_DELTA, iteratorURL, headerNames, null); String orderByCol = ParamUtil.getString(portletRequest, "orderByCol"); String orderByType = ParamUtil.getString(portletRequest, "orderByType"); PortalPreferences preferences = PortletPreferencesFactoryUtil.getPortalPreferences(portletRequest); if (Validator.isNotNull(orderByCol) && Validator.isNotNull(orderByType)) { preferences.setValue( PortletKeys.MY_WORKFLOW_INSTANCE, "order-by-col", orderByCol); preferences.setValue( PortletKeys.MY_WORKFLOW_INSTANCE, "order-by-type", orderByType); } else { orderByCol = preferences.getValue( PortletKeys.MY_WORKFLOW_INSTANCE, "order-by-col", "last-activity-date"); orderByType = preferences.getValue( PortletKeys.MY_WORKFLOW_INSTANCE, "order-by-type", "asc"); } OrderByComparator<WorkflowInstance> orderByComparator = WorkflowInstancePortletUtil.getWorkflowInstanceOrderByComparator( orderByCol, orderByType); setOrderByCol(orderByCol); setOrderByType(orderByType); setOrderByComparator(orderByComparator); } }