Package wbbs.domain

Examples of wbbs.domain.Board


            for (Board board : boardList) {
                boards.put(board.id, board);
            }
        }
        for (Map.Entry<Integer, Board> entry : boards.entrySet()) {
            Board board = entry.getValue();
            board.topicCount = getBoardTopicCount(board.id);
            board.replyCount = getBoardReplyCount(board.replyCount);
            board.masterIds = qr.query("select masterId from BoardMaster where boardId=?", new ColumnListHandler<String>(), board.id);
        }
    }
View Full Code Here


    public Object html(int id) throws SQLException {

        ensureLoginPage();

        if (id == 0 && boardCategoryId != 0) {
            board = new Board();
            board.boardCategoryId = boardCategoryId;
            board.category = boardService.findCategory(boardCategoryId);
            if (board.category == null) {
                return new ErrorResult(404);
            }
View Full Code Here

TOP

Related Classes of wbbs.domain.Board

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.