Package at.riemers.zero.base.model

Examples of at.riemers.zero.base.model.FunctionLog


        this.functionLogDao = functionLogDao;
    }

    @Deprecated
    public void logFunction(ZeroUser user, String function) {
        FunctionLog log = new FunctionLog();
        log.setFunction(function);
        if (user instanceof ZeroUser) {
            log.setUser((ZeroUser) user);
        }
        log.setDate(new Date());
        functionLogDao.makePersistent(log);
    }
View Full Code Here


        log.setDate(new Date());
        functionLogDao.makePersistent(log);
    }

    public void logFunction(String function) {
        FunctionLog log = new FunctionLog();
        log.setFunction(function);
        if (getUser() instanceof ZeroUser) {
            ZeroUser user = (ZeroUser) getUser();
            log.setUser((ZeroUser) user);
            log.setDate(new Date());
            functionLogDao.makePersistent(log);
        }
    }
View Full Code Here

TOP

Related Classes of at.riemers.zero.base.model.FunctionLog

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.