diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-04-10 00:12:24 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-04-10 00:23:49 +0200 |
commit | 57fb2b9773d96777ba343e28e5e2ae4d6fa96f42 (patch) | |
tree | 267a4d14f3ead6079d7383198a0705a675d7c9bd /usage_examples/experimental/onXExample_post.jpage | |
parent | 4dce9a351d2e459fb2d03bdb9c99b62a2b29f8d0 (diff) | |
download | lombok-57fb2b9773d96777ba343e28e5e2ae4d6fa96f42.tar.gz lombok-57fb2b9773d96777ba343e28e5e2ae4d6fa96f42.tar.bz2 lombok-57fb2b9773d96777ba343e28e5e2ae4d6fa96f42.zip |
[website] Whoops we had 2 copies of usage_examples. Fixed that by deleting the one that was NOT being used for the website.
Diffstat (limited to 'usage_examples/experimental/onXExample_post.jpage')
-rw-r--r-- | usage_examples/experimental/onXExample_post.jpage | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/usage_examples/experimental/onXExample_post.jpage b/usage_examples/experimental/onXExample_post.jpage deleted file mode 100644 index 1be94f2a..00000000 --- a/usage_examples/experimental/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; - } -} |