Package com.impetus.kundera.datakeeper.entities

Examples of com.impetus.kundera.datakeeper.entities.SubordinatesCounter


        dao.insert(employee);
        log.info("Employee {} information successfully inserted.", employee.getEmployeeName());

        if (employee.getManager() != null)
        {
            SubordinatesCounter counter = new SubordinatesCounter();
            counter.setNoOfSubordinates(1);
            counter.setEmployeeId(employee.getManager().getEmployeeId());
            dao.insert(counter);
            log.info("Incremented no of subordinates for manager {}, successfully.", employee.getManager()
                    .getEmployeeName());
        }
    }
View Full Code Here

TOP

Related Classes of com.impetus.kundera.datakeeper.entities.SubordinatesCounter

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.