/** * 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.display.context; import com.liferay.portal.kernel.dao.search.DisplayTerms; import com.liferay.portal.kernel.exception.PortalException; import com.liferay.portal.kernel.portlet.LiferayPortletRequest; import com.liferay.portal.kernel.portlet.LiferayPortletResponse; import com.liferay.portal.kernel.util.OrderByComparator; import com.liferay.portal.kernel.util.Validator; import com.liferay.portal.kernel.workflow.WorkflowInstance; import com.liferay.portal.kernel.workflow.WorkflowInstanceManagerUtil; import com.liferay.portal.workflow.instance.web.internal.search.WorkflowInstanceSearch; import java.util.List; /** * @author Marcellus Tavares */ public class MyWorkflowInstanceViewDisplayContext extends WorkflowInstanceViewDisplayContext { public MyWorkflowInstanceViewDisplayContext( LiferayPortletRequest liferayPortletRequest, LiferayPortletResponse liferayPortletResponse) throws PortalException { super(liferayPortletRequest, liferayPortletResponse); } @Override public String getHeaderTitle() { return "my-submissions"; } @Override protected List<WorkflowInstance> getSearchContainerResults( int start, int end, OrderByComparator<WorkflowInstance> orderByComparator) throws PortalException { return WorkflowInstanceManagerUtil.search( workflowInstanceRequestHelper.getCompanyId(), workflowInstanceRequestHelper.getUserId(), getAssetType(getKeywords()), getKeywords(), getKeywords(), getCompleted(), start, end, orderByComparator); } @Override protected int getSearchContainerTotal() throws PortalException { return WorkflowInstanceManagerUtil.searchCount( workflowInstanceRequestHelper.getCompanyId(), workflowInstanceRequestHelper.getUserId(), getAssetType(getKeywords()), getKeywords(), getKeywords(), getCompleted()); } @Override protected void setSearchContainerEmptyResultsMessage( WorkflowInstanceSearch searchContainer) { DisplayTerms searchTerms = searchContainer.getDisplayTerms(); if (isNavigationAll()) { searchContainer.setEmptyResultsMessage( "there-are-no-instances-started-by-me"); } else if (isNavigationPending()) { searchContainer.setEmptyResultsMessage( "there-are-no-pending-instances-started-by-me"); } else { searchContainer.setEmptyResultsMessage( "there-are-no-completed-instances-started-by-me"); } if (Validator.isNotNull(searchTerms.getKeywords())) { searchContainer.setEmptyResultsMessage( searchContainer.getEmptyResultsMessage() + "-with-the-specified-search-criteria"); } } }