View Javadoc

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   * A document attribute which contains date/time data.  Construct instances of {@code DocumentAttributeDateTime} using
15   * it's builder or the {@link DocumentAttributeFactory}.
16   *
17   * @author Kuali Rice Team (rice.collab@kuali.org)
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       * A builder implementation which allows for construction of a {@code DocumentAttributeDateTime}.
52       */
53      public static final class Builder extends AbstractBuilder<DateTime> {
54  
55          private Builder(String name) {
56              super(name);
57          }
58  
59          /**
60           * Create a builder for the document attribute using the given attribute name.
61           *
62           * @param name the name of the document attribute which should be built by this builder, should never be a
63           * null or blank value
64           * @return a builder instance initialized with the given attribute name
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       * Defines some internal constants used on this class.
84       */
85      static class Constants {
86          final static String ROOT_ELEMENT_NAME = "documentAttributeDateTime";
87          final static String TYPE_NAME = "DocumentAttributeDateTimeType";
88      }
89  
90      /**
91       * A private class which exposes constants which define the XML element names to use when this object is marshalled to XML.
92       */
93      static class Elements {
94          final static String VALUE = "value";
95      }
96  
97  }