Package com.moreemrecife.jpa

Examples of com.moreemrecife.jpa.Function


    @Override
    public int saveFunction(FunctionTO to) {
        EntityManagerHelper.set(entityManager);

        Function data = new Function();

        data.setId(to.getId());
        data.setName(to.getName());
        data.setDescription(to.getDescription());
        return AccessControlDao.saveFunction(data);
    }
View Full Code Here


        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.jpa.Function

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.