Package wbbs.domain

Examples of wbbs.domain.BoardCategory


    public Object html(int id) throws SQLException {

        ensureLoginPage();

        if (id == 0) {
            category = new BoardCategory();
        } else {
            category = boardService.findCategory(id);
            if (category == null) {
                return new ErrorResult(404);
            }
View Full Code Here

TOP

Related Classes of wbbs.domain.BoardCategory

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.