1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.r2.common.dto; |
17 | |
|
18 | |
import org.kuali.student.r2.common.infc.TimeOfDay; |
19 | |
|
20 | |
import javax.xml.bind.Element; |
21 | |
import javax.xml.bind.annotation.*; |
22 | |
import java.util.List; |
23 | |
|
24 | |
@XmlAccessorType(XmlAccessType.FIELD) |
25 | |
@XmlType(name = "TimeOfDayInfo", propOrder = {"milliSeconds", "_futureElements"}) |
26 | |
public class TimeOfDayInfo implements TimeOfDay { |
27 | |
|
28 | |
@XmlElement |
29 | |
private Long milliSeconds; |
30 | |
@XmlAnyElement |
31 | |
private List<Element> _futureElements; |
32 | |
|
33 | 0 | public TimeOfDayInfo() { |
34 | |
|
35 | 0 | } |
36 | |
|
37 | 0 | public TimeOfDayInfo(TimeOfDay timeOfDay) { |
38 | 0 | if(null != timeOfDay) { |
39 | 0 | this.milliSeconds = timeOfDay.getMilliSeconds(); |
40 | |
} |
41 | 0 | } |
42 | |
|
43 | |
@Override |
44 | |
public Long getMilliSeconds() { |
45 | 0 | return this.milliSeconds; |
46 | |
} |
47 | |
|
48 | |
public void setMilliSeconds(Long milliSeconds) { |
49 | 0 | this.milliSeconds = milliSeconds; |
50 | 0 | } |
51 | |
|
52 | |
public boolean equals (TimeOfDay timeOfDay) { |
53 | 0 | return (this.milliSeconds.compareTo(timeOfDay.getMilliSeconds()) == 0); |
54 | |
} |
55 | |
} |