1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.r2.common.datadictionary; |
17 | |
|
18 | |
import org.kuali.rice.core.impl.datetime.DateTimeServiceImpl; |
19 | |
|
20 | |
|
21 | |
|
22 | |
|
23 | |
|
24 | |
|
25 | |
|
26 | 0 | public class SpringConfigurableDateTimeServiceImpl extends DateTimeServiceImpl { |
27 | |
|
28 | |
public String getDateToStringFormatForFileName() { |
29 | 0 | return dateToStringFormatForFileName; |
30 | |
} |
31 | |
|
32 | |
public void setDateToStringFormatForFileName(String dateToStringFormatForFileName) { |
33 | 0 | this.dateToStringFormatForFileName = dateToStringFormatForFileName; |
34 | 0 | } |
35 | |
|
36 | |
public String getDateToStringFormatForUserInterface() { |
37 | 0 | return dateToStringFormatForUserInterface; |
38 | |
} |
39 | |
|
40 | |
public void setDateToStringFormatForUserInterface(String dateToStringFormatForUserInterface) { |
41 | 0 | this.dateToStringFormatForUserInterface = dateToStringFormatForUserInterface; |
42 | 0 | } |
43 | |
|
44 | |
public String[] getStringToDateFormats() { |
45 | 0 | return stringToDateFormats; |
46 | |
} |
47 | |
|
48 | |
public void setStringToDateFormats(String[] stringToDateFormats) { |
49 | 0 | this.stringToDateFormats = stringToDateFormats; |
50 | 0 | } |
51 | |
|
52 | |
public String[] getStringToTimestampFormats() { |
53 | 0 | return stringToTimestampFormats; |
54 | |
} |
55 | |
|
56 | |
public void setStringToTimestampFormats(String[] stringToTimestampFormats) { |
57 | 0 | this.stringToTimestampFormats = stringToTimestampFormats; |
58 | 0 | } |
59 | |
|
60 | |
public String getTimestampToStringFormatForFileName() { |
61 | 0 | return timestampToStringFormatForFileName; |
62 | |
} |
63 | |
|
64 | |
public void setTimestampToStringFormatForFileName(String timestampToStringFormatForFileName) { |
65 | 0 | this.timestampToStringFormatForFileName = timestampToStringFormatForFileName; |
66 | 0 | } |
67 | |
|
68 | |
public String getTimestampToStringFormatForUserInterface() { |
69 | 0 | return timestampToStringFormatForUserInterface; |
70 | |
} |
71 | |
|
72 | |
public void setTimestampToStringFormatForUserInterface(String timestampToStringFormatForUserInterface) { |
73 | 0 | this.timestampToStringFormatForUserInterface = timestampToStringFormatForUserInterface; |
74 | 0 | } |
75 | |
|
76 | |
|
77 | |
} |