
com.liferay.server.admin.web.internal.display.context.ServerDisplayContext 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.server.admin.web.internal.display.context;
import com.liferay.frontend.taglib.clay.servlet.taglib.util.NavigationItem;
import com.liferay.frontend.taglib.clay.servlet.taglib.util.NavigationItemList;
import com.liferay.portal.kernel.language.LanguageUtil;
import com.liferay.portal.kernel.util.ParamUtil;
import java.util.List;
import javax.portlet.RenderResponse;
import javax.servlet.http.HttpServletRequest;
/**
* @author Pei-Jung Lan
*/
public class ServerDisplayContext {
public ServerDisplayContext(
HttpServletRequest httpServletRequest, RenderResponse renderResponse) {
_httpServletRequest = httpServletRequest;
_renderResponse = renderResponse;
}
public List getServerNavigationItems() {
String tabs1 = ParamUtil.getString(
_httpServletRequest, "tabs1", "resources");
String tabs2 = ParamUtil.getString(_httpServletRequest, "tabs2");
return new NavigationItemList() {
{
for (String tabs1Name : _TABS1_NAMES) {
add(
navigationItem -> {
navigationItem.setActive(tabs1.equals(tabs1Name));
navigationItem.setHref(
_renderResponse.createRenderURL(),
"mvcRenderCommandName", "/server_admin/view",
"tabs1", tabs1Name, "tabs2", tabs2);
navigationItem.setLabel(
LanguageUtil.get(
_httpServletRequest, tabs1Name));
});
}
}
};
}
private static final String[] _TABS1_NAMES = {
"resources", "log-levels", "properties", "data-migration", "mail",
"external-services", "script", "shutdown"
};
private final HttpServletRequest _httpServletRequest;
private final RenderResponse _renderResponse;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy