View Javadoc
1   /**
2    * Copyright 2010-2014 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.common.util.xml.jaxb.adapter;
17  
18  import java.util.Collections;
19  import java.util.Map;
20  
21  import javax.xml.bind.annotation.adapters.XmlAdapter;
22  
23  import org.kuali.common.util.xml.jaxb.wrapper.MapWrapper;
24  
25  public class ImmutableMapAdapter<K, V> extends XmlAdapter<MapWrapper<K, V>, Map<K, V>> {
26  
27  	private final Map<K, V> EMPTY_MAP = Collections.emptyMap();
28  	private final MapWrapper<K, V> EMPTY_WRAPPER = new MapWrapper<K, V>(EMPTY_MAP);
29  
30  	@Override
31  	public MapWrapper<K, V> marshal(Map<K, V> map) {
32  		if (isEmpty(map)) {
33  			return EMPTY_WRAPPER;
34  		} else {
35  			return new MapWrapper<K, V>(map);
36  		}
37  	}
38  
39  	@Override
40  	public Map<K, V> unmarshal(MapWrapper<K, V> wrapper) {
41  		if (isEmpty(wrapper.getMap())) {
42  			return EMPTY_MAP;
43  		} else {
44  			return Collections.unmodifiableMap(wrapper.getMap());
45  		}
46  	}
47  
48  	protected static boolean isEmpty(Map<?, ?> map) {
49  		return map == null || map.size() == 0;
50  	}
51  
52  }