1   package org.org.usurper.dummydomain;
2   
3   import java.sql.Timestamp;
4   import java.util.Date;
5   
6   public interface IImmutableDummyVO {
7   
8       /**
9        * @return the booleanField
10       */
11      public abstract Boolean getBooleanField();
12  
13      /**
14       * @return the dateField
15       */
16      public abstract Date getDateField();
17  
18      /**
19       * @return the doubleField
20       */
21      public abstract Double getDoubleField();
22  
23      /**
24       * @return the floatField
25       */
26      public abstract Float getFloatField();
27  
28      /**
29       * @return the integerField
30       */
31      public abstract Integer getIntegerField();
32  
33      /**
34       * @return the longField
35       */
36      public abstract Long getLongField();
37  
38      /**
39       * @return the primitiveBooleanField
40       */
41      public abstract boolean isPrimitiveBooleanField();
42  
43      /**
44       * @return the primitiveByteField
45       */
46      public abstract byte getPrimitiveByteField();
47  
48      /**
49       * @return the primitiveCharField
50       */
51      public abstract char getPrimitiveCharField();
52  
53      /**
54       * @return the primitiveDoubleField
55       */
56      public abstract double getPrimitiveDoubleField();
57  
58      /**
59       * @return the primitiveFloatField
60       */
61      public abstract float getPrimitiveFloatField();
62  
63      /**
64       * @return the primitiveIntField
65       */
66      public abstract int getPrimitiveIntField();
67  
68      /**
69       * @return the primitiveLongField
70       */
71      public abstract long getPrimitiveLongField();
72  
73      /**
74       * @return the primitiveShortField
75       */
76      public abstract short getPrimitiveShortField();
77  
78      /**
79       * @return the shortField
80       */
81      public abstract Short getShortField();
82  
83      /**
84       * @return the stringField
85       */
86      public abstract String getStringField();
87  
88      public java.sql.Date getSqlDateField();
89  
90      public Timestamp getTimestampField();
91  
92  }