Examples of CapSqlStatement


Examples of com.iisigroup.cap.utils.CapSqlStatement

    @Override
    public void processUserStatus(int pwdExpiredDay, int pwdAccountDisable,
            int pwdAccountDelete) {
        Map<String, Object> param = new HashMap<String, Object>();
        CapSqlStatement sqlp = (CapSqlStatement) CapAppContext
                .getBean("userSqlStatement");
        List<Map<String, Object>> result = getNamedJdbcTemplate().queryForList(
                (String) sqlp.getValue("pwdlog_lastpwd"), param);
        for (Map<String, Object> rec : result) {
            String userCode = (String) rec.get("usercode");
            Timestamp lastpwd = (Timestamp) rec.get("lastpwd");
            param.put("userCode", userCode);
            param.put("pwdExpiredTime",
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.