Package ru.webcrafter.client.web.model

Examples of ru.webcrafter.client.web.model.RecipeId


    @RequestMapping("/craft")
    public String onIndexLoaded(Map<String, Object> map, Principal principal) {
        map.put("itemTemplateList", service.getAllItemTemplates());
        map.put("recipeList", service.getAllRecipes());
        map.put("recipeId", new RecipeId());

        if (principal != null) {
            // HACKZZZ
            final String userName = principal.getName();
            UserAuth userAuth = userService.getUser(userName);
View Full Code Here

TOP

Related Classes of ru.webcrafter.client.web.model.RecipeId

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.