1 package org.hibernate.test.legacy; 3 4 public class Circular { 5 6 private String id; 7 private Class clazz; 8 private Circular other; 9 private Object anyEntity; 10 11 14 public Circular() { 15 super(); 16 } 17 18 22 public Class getClazz() { 23 return clazz; 24 } 25 26 30 public String getId() { 31 return id; 32 } 33 34 38 public void setClazz(Class clazz) { 39 this.clazz = clazz; 40 } 41 42 46 public void setId(String id) { 47 this.id = id; 48 } 49 50 54 public Circular getOther() { 55 return other; 56 } 57 58 62 public void setOther(Circular other) { 63 this.other = other; 64 } 65 66 70 public Object getAnyEntity() { 71 return anyEntity; 72 } 73 74 78 public void setAnyEntity(Object anyEntity) { 79 this.anyEntity = anyEntity; 80 } 81 82 } 83 84 85 86 87 88 89 | Popular Tags |