1 /*2 * Created on 28-Jan-20053 *4 */5 package org.hibernate.test.criteria;6 7 /**8 * @author max9 *10 */11 public class StudentDTO {12 13 private String studentName;14 private String courseDescription;15 16 public StudentDTO() { }17 18 public String getName() {19 return studentName;20 }21 22 public String getDescription() {23 return courseDescription;24 }25 26 }27