1 package org.kuali.rice.kew.api.document.attribute;
2
3 import org.joda.time.DateTime;
4 import org.kuali.rice.core.api.util.jaxb.DateTimeAdapter;
5
6 import javax.xml.bind.annotation.XmlAccessType;
7 import javax.xml.bind.annotation.XmlAccessorType;
8 import javax.xml.bind.annotation.XmlElement;
9 import javax.xml.bind.annotation.XmlRootElement;
10 import javax.xml.bind.annotation.XmlType;
11 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
12
13
14
15
16
17
18
19 @XmlRootElement(name = DocumentAttributeDateTime.Constants.ROOT_ELEMENT_NAME)
20 @XmlAccessorType(XmlAccessType.NONE)
21 @XmlType(name = DocumentAttributeDateTime.Constants.TYPE_NAME, propOrder = {
22 DocumentAttributeDateTime.Elements.VALUE
23 })
24 public final class DocumentAttributeDateTime extends DocumentAttribute {
25
26 @XmlElement(name = Elements.VALUE, required = false)
27 @XmlJavaTypeAdapter(DateTimeAdapter.class)
28 private final DateTime value;
29
30 @SuppressWarnings("unused")
31 private DocumentAttributeDateTime() {
32 this.value = null;
33 }
34
35 private DocumentAttributeDateTime(Builder builder) {
36 super(builder.getName());
37 this.value = builder.getValue();
38 }
39
40 @Override
41 public DateTime getValue() {
42 return value;
43 }
44
45 @Override
46 public DocumentAttributeDataType getDataType() {
47 return DocumentAttributeDataType.DATE_TIME;
48 }
49
50
51
52
53 public static final class Builder extends AbstractBuilder<DateTime> {
54
55 private Builder(String name) {
56 super(name);
57 }
58
59
60
61
62
63
64
65
66 public static Builder create(String name) {
67 return new Builder(name);
68 }
69
70 @Override
71 public DocumentAttributeDataType getDataType() {
72 return DocumentAttributeDataType.DATE_TIME;
73 }
74
75 @Override
76 public DocumentAttributeDateTime build() {
77 return new DocumentAttributeDateTime(this);
78 }
79
80 }
81
82
83
84
85 static class Constants {
86 final static String ROOT_ELEMENT_NAME = "documentAttributeDateTime";
87 final static String TYPE_NAME = "DocumentAttributeDateTimeType";
88 }
89
90
91
92
93 static class Elements {
94 final static String VALUE = "value";
95 }
96
97 }