com.liferay.journal.web.internal.display.context.JournalSelectDDMStructureManagementToolbarDisplayContext Maven / Gradle / Ivy
/**
* 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.journal.web.internal.display.context;
import com.liferay.frontend.taglib.clay.servlet.taglib.display.context.SearchContainerManagementToolbarDisplayContext;
import com.liferay.petra.portlet.url.builder.PortletURLBuilder;
import com.liferay.petra.string.StringPool;
import com.liferay.portal.kernel.portlet.LiferayPortletRequest;
import com.liferay.portal.kernel.portlet.LiferayPortletResponse;
import javax.servlet.http.HttpServletRequest;
/**
* @author Eudaldo Alonso
*/
public class JournalSelectDDMStructureManagementToolbarDisplayContext
extends SearchContainerManagementToolbarDisplayContext {
public JournalSelectDDMStructureManagementToolbarDisplayContext(
HttpServletRequest httpServletRequest,
LiferayPortletRequest liferayPortletRequest,
LiferayPortletResponse liferayPortletResponse,
JournalSelectDDMStructureDisplayContext
journalSelectDDMStructureDisplayContext)
throws Exception {
super(
httpServletRequest, liferayPortletRequest, liferayPortletResponse,
journalSelectDDMStructureDisplayContext.getDDMStructureSearch());
_journalSelectDDMStructureDisplayContext =
journalSelectDDMStructureDisplayContext;
}
@Override
public String getClearResultsURL() {
return PortletURLBuilder.create(
getPortletURL()
).setKeywords(
StringPool.BLANK
).buildString();
}
@Override
public String getSearchActionURL() {
return PortletURLBuilder.createRenderURL(
liferayPortletResponse
).setMVCPath(
"/select_ddm_structure.jsp"
).setParameter(
"classPK", _journalSelectDDMStructureDisplayContext.getClassPK()
).setParameter(
"eventName", _journalSelectDDMStructureDisplayContext.getEventName()
).buildString();
}
@Override
public Boolean isSelectable() {
return false;
}
@Override
protected String[] getNavigationKeys() {
return new String[] {"all"};
}
@Override
protected String[] getOrderByKeys() {
return new String[] {"modified-date", "id"};
}
private final JournalSelectDDMStructureDisplayContext
_journalSelectDDMStructureDisplayContext;
}