aboutsummaryrefslogtreecommitdiff
path: root/usage_examples/experimental/onXExample_post.jpage
diff options
context:
space:
mode:
Diffstat (limited to 'usage_examples/experimental/onXExample_post.jpage')
-rw-r--r--usage_examples/experimental/onXExample_post.jpage22
1 files changed, 22 insertions, 0 deletions
diff --git a/usage_examples/experimental/onXExample_post.jpage b/usage_examples/experimental/onXExample_post.jpage
new file mode 100644
index 00000000..1be94f2a
--- /dev/null
+++ b/usage_examples/experimental/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;
+ }
+}