Package com.ettrema.tutorial.hr.domain

Examples of com.ettrema.tutorial.hr.domain.Department


    List list = crit.list();
    if( list == null || list.size() == 0 ) {
      log.debug("not found");
      return null;
    } else {
      Department d = (Department) list.get(0);
      log.debug("found: " + d.getName());
      return new DepartmentResource(this, d);
    }
  }
View Full Code Here


   
    List existingDepartments = session.createCriteria(Department.class).list();
    if( existingDepartments == null || existingDepartments.size() == 0) {
      log.debug("creating initial data");
      Transaction tx = session.beginTransaction();
      Department d = Department.create("Information Technology");
      session.save(d);
      d = Department.create("Finance");
      session.save(d);
      d = Department.create("Human Resources");
      session.save(d);
View Full Code Here

TOP

Related Classes of com.ettrema.tutorial.hr.domain.Department

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.