1 package org.hibernate.test.hql; 3 4 9 public class EntityWithCrazyCompositeKey { 10 private CrazyCompositeKey id; 11 private String name; 12 13 public CrazyCompositeKey getId() { 14 return id; 15 } 16 17 public void setId(CrazyCompositeKey id) { 18 this.id = id; 19 } 20 21 public String getName() { 22 return name; 23 } 24 25 public void setName(String name) { 26 this.name = name; 27 } 28 } 29 | Popular Tags |