aboutsummaryrefslogtreecommitdiff
path: root/usage_examples/onXExample_post.jpage
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2012-11-17 20:26:58 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2012-11-17 20:26:58 +0100
commitef8769d3180b2c6de91a64f69dfa23a2e6e449b9 (patch)
treedff0f1f3dd0221041afb45e7f1f50d7bddec3a23 /usage_examples/onXExample_post.jpage
parent58851b4c6e96a51d1ac298c7ed85efac6ffe8335 (diff)
downloadlombok-ef8769d3180b2c6de91a64f69dfa23a2e6e449b9.tar.gz
lombok-ef8769d3180b2c6de91a64f69dfa23a2e6e449b9.tar.bz2
lombok-ef8769d3180b2c6de91a64f69dfa23a2e6e449b9.zip
Added all documentation for the onX feature and updated changelog.
Now to actually write the feature (Well, rescue it from the onX-removal tag).
Diffstat (limited to 'usage_examples/onXExample_post.jpage')
-rw-r--r--usage_examples/onXExample_post.jpage22
1 files changed, 22 insertions, 0 deletions
diff --git a/usage_examples/onXExample_post.jpage b/usage_examples/onXExample_post.jpage
new file mode 100644
index 00000000..1be94f2a
--- /dev/null
+++ b/usage_examples/onXExample_post.jpage
@@ -0,0 +1,22 @@
+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;
+ }
+}