aboutsummaryrefslogtreecommitdiff
path: root/usage_examples/onXExample_post.jpage
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2013-02-18 21:41:07 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2013-02-18 21:41:07 +0100
commited61012f95cefae8d03260f506ffe34bc19bd90c (patch)
tree7f7478ed94a7eb423a2cd1379541c3716475efc4 /usage_examples/onXExample_post.jpage
parent1488a262bd389d0fef444bb3fd80821a2d66e6c2 (diff)
downloadlombok-ed61012f95cefae8d03260f506ffe34bc19bd90c.tar.gz
lombok-ed61012f95cefae8d03260f506ffe34bc19bd90c.tar.bz2
lombok-ed61012f95cefae8d03260f506ffe34bc19bd90c.zip
whoops, belated push and fixes to the documentation of onX
Diffstat (limited to 'usage_examples/onXExample_post.jpage')
-rw-r--r--usage_examples/onXExample_post.jpage22
1 files changed, 0 insertions, 22 deletions
diff --git a/usage_examples/onXExample_post.jpage b/usage_examples/onXExample_post.jpage
deleted file mode 100644
index 1be94f2a..00000000
--- a/usage_examples/onXExample_post.jpage
+++ /dev/null
@@ -1,22 +0,0 @@
-import javax.inject.Inject;
-import javax.persistence.Id;
-import javax.persistence.Column;
-import javax.validation.constraints.Max;
-
-public class OnXExample {
- private long unid;
-
- @Inject
- public OnXExample(long unid) {
- this.unid = unid;
- }
-
- @Id @Column(name="unique-id")
- public long getUnid() {
- return unid;
- }
-
- public void setUnid(@Max(10000) long unid) {
- this.unid = unid;
- }
-}