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.wrapper;
17
18 import java.util.HashMap;
19 import java.util.Map;
20
21 import javax.xml.bind.annotation.XmlAnyElement;
22
23 import org.kuali.common.util.Assert;
24
25 public class MapWrapper<K, V> {
26
27 @XmlAnyElement(lax = true)
28 private final Map<K, V> map;
29
30 @SuppressWarnings("unused")
31 private MapWrapper() {
32 this(new HashMap<K, V>());
33 }
34
35 public MapWrapper(Map<K, V> map) {
36 Assert.noNulls(map);
37 this.map = map;
38 }
39
40 public Map<K, V> getMap() {
41 return map;
42 }
43
44 }