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.Collection;
19  import java.util.Collections;
20  
21  import javax.xml.bind.annotation.adapters.XmlAdapter;
22  
23  import org.kuali.common.util.xml.jaxb.wrapper.CollectionWrapper;
24  
25  public class ImmutableCollectionAdapter<T> extends XmlAdapter<CollectionWrapper<T>, Collection<T>> {
26  
27  	private final Collection<T> EMPTY_COLLECTION = Collections.emptyList();
28  	private final CollectionWrapper<T> EMPTY_WRAPPER = new CollectionWrapper<T>(EMPTY_COLLECTION);
29  
30  	@Override
31  	public CollectionWrapper<T> marshal(Collection<T> c) {
32  		if (isEmpty(c)) {
33  			return EMPTY_WRAPPER;
34  		} else {
35  			return new CollectionWrapper<T>(c);
36  		}
37  	}
38  
39  	@Override
40  	public Collection<T> unmarshal(CollectionWrapper<T> wrapper) {
41  		if (isEmpty(wrapper.getCollection())) {
42  			return EMPTY_COLLECTION;
43  		} else {
44  			return Collections.unmodifiableCollection(wrapper.getCollection());
45  		}
46  	}
47  
48  	protected static boolean isEmpty(Collection<?> c) {
49  		return c == null || c.size() == 0;
50  	}
51  
52  }