Package com.moreemrecife.dto

Examples of com.moreemrecife.dto.FunctionTO


    public void setDescription(String description) {
        this.description = description;
    }

    public String saveFunction() {
        FunctionTO to = new FunctionTO();

        to.setId(getId());
        to.setName(getName());
        to.setDescription(getDescription());

        try {
            InitialContext ctx = new InitialContext();
            Object o = ctx.lookup("java:global/RealEstateEAR/RealEstateSecurityEJB/AccessControlBean!com.moreemrecife.security.AccessControl");
View Full Code Here


     * Camada view n�o pode acessar entities.
     * @param dao Objeto da camada de persist�ncia
     * @return objeto convertido
     */
    private static FunctionTO convertFunctionTO(Function f) {
        FunctionTO to = new FunctionTO();

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

        return to;
    }
View Full Code Here

TOP

Related Classes of com.moreemrecife.dto.FunctionTO

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.