summaryrefslogtreecommitdiff
path: root/container-compiler-plugin/src/test/resources/Person.java
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2013-08-03 15:06:46 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2013-08-03 15:06:46 +0200
commitb5d6f23d8ac3d4bedb139fdaecc2e9dc621f385a (patch)
treeede2d0de570efcbb546fabcb2d5d050511792ae1 /container-compiler-plugin/src/test/resources/Person.java
parent34137b599dbea13c94224dff2955376b1394dbc9 (diff)
downloadcontainer-playground-b5d6f23d8ac3d4bedb139fdaecc2e9dc621f385a.tar.gz
container-playground-b5d6f23d8ac3d4bedb139fdaecc2e9dc621f385a.tar.bz2
container-playground-b5d6f23d8ac3d4bedb139fdaecc2e9dc621f385a.tar.xz
container-playground-b5d6f23d8ac3d4bedb139fdaecc2e9dc621f385a.zip
wip
Diffstat (limited to 'container-compiler-plugin/src/test/resources/Person.java')
-rw-r--r--container-compiler-plugin/src/test/resources/Person.java25
1 files changed, 0 insertions, 25 deletions
diff --git a/container-compiler-plugin/src/test/resources/Person.java b/container-compiler-plugin/src/test/resources/Person.java
deleted file mode 100644
index 4bdb882..0000000
--- a/container-compiler-plugin/src/test/resources/Person.java
+++ /dev/null
@@ -1,25 +0,0 @@
-import io.trygvis.persistence.SqlEntity;
-
-import javax.persistence.Entity;
-import javax.persistence.Id;
-import javax.persistence.ManyToOne;
-import java.util.Date;
-
-@Entity
-@SqlEntity("io.trygvis.persistence.test.PersonTypeHandler")
-public class Person {
- @Id
- public Long id;
-
- public Date birthDate;
-
- @ManyToOne
- public Person mother;
-
-// @ManyToOne
-// public Person father;
-
-// @OneToMany(mappedBy = "id")
-// @OrderBy("birthDate asc")
-// private List<Person> children = new ArrayList<>();
-}