Package com.moreemrecife.dto

Examples of com.moreemrecife.dto.GroupTO


     * Camada view n�o pode acessar entities.
     * @param dao Objeto da camada de persist�ncia
     * @return objeto convertido
     */
    public static GroupTO convertGroupTO(Group dao) {
        GroupTO to = new GroupTO();

        to.setId(dao.getId());
        to.setName(dao.getName());

        Map<String, FunctionTO> functions = new HashMap<String, FunctionTO>();
        for (GroupFunction gf : dao.getFunctions()) {
            Function f = gf.getFunction();
            functions.put(f.getName(), convertFunctionTO(f));
        }

        to.setFunctions(functions);

        return to;
    }
View Full Code Here

TOP

Related Classes of com.moreemrecife.dto.GroupTO

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.