Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
DateTimeAdapter |
|
| 2.5;2.5 |
1 | /* | |
2 | * Copyright 2007-2010 The Kuali Foundation | |
3 | * | |
4 | * Licensed under the Educational Community License, Version 2.0 (the "License"); | |
5 | * you may not use this file except in compliance with the License. | |
6 | * You may obtain a copy of the License at | |
7 | * | |
8 | * http://www.opensource.org/licenses/ecl2.php | |
9 | * | |
10 | * Unless required by applicable law or agreed to in writing, software | |
11 | * distributed under the License is distributed on an "AS IS" BASIS, | |
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
13 | * See the License for the specific language governing permissions and | |
14 | * limitations under the License. | |
15 | */ | |
16 | package org.kuali.rice.core.api.util.jaxb; | |
17 | ||
18 | import org.joda.time.DateTime; | |
19 | ||
20 | import javax.xml.bind.annotation.adapters.XmlAdapter; | |
21 | import java.util.Calendar; | |
22 | ||
23 | /** | |
24 | * Marshall/unmarshall a joda-time DateTime object. | |
25 | * | |
26 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
27 | * | |
28 | */ | |
29 | 40 | public class DateTimeAdapter extends XmlAdapter<Calendar, DateTime> { |
30 | ||
31 | @Override | |
32 | public Calendar marshal(DateTime dateTime) throws Exception { | |
33 | 9 | if (dateTime == null) { |
34 | 0 | return null; |
35 | } | |
36 | 9 | Calendar calendar = Calendar.getInstance(); |
37 | 9 | calendar.setTimeInMillis(dateTime.getMillis()); |
38 | 9 | return calendar; |
39 | } | |
40 | ||
41 | @Override | |
42 | public DateTime unmarshal(Calendar calendar) throws Exception { | |
43 | 17 | return calendar == null ? null : new DateTime(calendar.getTimeInMillis()); |
44 | } | |
45 | ||
46 | } |