Package net.zion54.webissuetracker.model

Examples of net.zion54.webissuetracker.model.Comment


            user.setUserID(comment1.getCreatedByID());
            user = issueService.selectUserByID(user);
            comment1.setCreator(user.getUsername());
        }
        model.addAttribute("comments", comments);
        model.addAttribute("comment", new Comment());
        return "viewissue";
    }
View Full Code Here


        return "index";
    }

    @RequestMapping(value = "/createissue", method = RequestMethod.GET)
    public String createIssue(Model model) {
        model.addAttribute("issue", new Issues());
        return "createissue";
    }
View Full Code Here

TOP

Related Classes of net.zion54.webissuetracker.model.Comment

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.