output={
@HandlerOutput(name="index", type=Index.class)})
public static void getHelpIndex(HandlerContext handlerCtx) {
// Get the desired Locale and the ConsolePluginService...
Locale locale = (Locale) handlerCtx.getInputValue("locale");
ConsolePluginService cps = PluginHandlers.getPluginService(
handlerCtx.getFacesContext());
// Determine the correct locale for the path...
String localePath = getHelpLocalePath(locale, cps);
handlerCtx.setOutputValue("index", cps.getHelpIndex(localePath));
}