This commit is contained in:
Timo Westkämper 2008-12-01 10:23:54 +00:00
parent 8427d2fad9
commit 6f2c8b82f4

View File

@ -68,6 +68,12 @@ public class HqlDomain {
public static class Account {
@Id long id;
@ManyToOne Person owner;
@Embedded EmbeddedType embeddedData;
}
@Embeddable
public static class EmbeddedType {
String someData;
}
/**