All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.anotheria.moskito.webui.accumulators.action.BaseAccumulatorsAction Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
package net.anotheria.moskito.webui.accumulators.action;

import net.anotheria.moskito.webui.shared.action.BaseMoskitoUIAction;
import net.anotheria.moskito.webui.shared.bean.NaviItem;

import javax.servlet.http.HttpServletRequest;

/**
 * Base action for accumulators.
 * @author lrosenberg
 */
public abstract class BaseAccumulatorsAction extends BaseMoskitoUIAction {

    @Override
    protected NaviItem getCurrentNaviItem() {
        return NaviItem.ACCUMULATORS;
    }
    @Override
    protected String getLinkToCurrentPage(HttpServletRequest req) {
        return "";
    }

	@Override
	protected String getSubTitle() {
		return "Accumulators";
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy