/******************************************************************************* * Copyright (c) 2012 OpenLegacy Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * OpenLegacy Inc. - initial API and implementation *******************************************************************************/ package org.openlegacy.terminal.mvc.web; import org.openlegacy.terminal.definitions.ScreenEntityDefinition; import org.openlegacy.terminal.layout.ScreenPageBuilder; import org.openlegacy.terminal.services.ScreenEntitiesRegistry; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import javax.inject.Inject; /** * OpenLegacy help controller * * @author Roi Mor * */ @Controller public class OnlineHelpController { private static final String PAGE = "page"; @Inject private ScreenEntitiesRegistry screenEntitiesRegistry; @Inject private ScreenPageBuilder pageBuilder; @RequestMapping(value = "/{screen}/online-help", method = RequestMethod.GET) public String help(@PathVariable("screen") String screenEntityName, Model uiModel) { ScreenEntityDefinition entityDefintion = screenEntitiesRegistry.get(screenEntityName); uiModel.addAttribute(PAGE, pageBuilder.build(entityDefintion)); return "help"; } }