Examples of DAOEmployee


Examples of com.ibs.academic.dao.DAOEmployee

        );
        return query.asList();
    }

    public List<Employee> findEmployee(String name){
        DAOEmployee daoEmployee = DAOEmployee.getInstance();
        Query<Employee> query = daoEmployee.getDs().createQuery(Employee.class);
        query.or(
                query.criteria("firstname").equal(Pattern.compile(name, Pattern.CASE_INSENSITIVE)),
                query.criteria("lastname").equal(Pattern.compile(name, Pattern.CASE_INSENSITIVE))
        );
        return query.asList();
View Full Code Here

Examples of com.ibs.academic.dao.DAOEmployee

    public Object getAsObject(FacesContext facesContext, UIComponent component, String value) {
        if(value.trim().equals("") || value.equals("null")){
            return null;
        }
        else{
            DAOEmployee daoEmployee = DAOEmployee.getInstance();
            return daoEmployee.get(new ObjectId(value));
        }
    }
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.