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.List;
19  
20  import javax.xml.bind.annotation.adapters.XmlAdapter;
21  
22  import org.apache.commons.lang3.StringUtils;
23  import org.kuali.common.util.Assert;
24  import org.kuali.common.util.CollectionUtils;
25  
26  import com.google.common.collect.ImmutableList;
27  
28  /**
29   * Trim each element from List&lt;String> to create the CSV when going from Object -> XML.<br>
30   * Convert the CSV back into List&lt;String> when going from XML -> Object.<br>
31   * The List&lt;String> returned when going from XML -> Object is immutable.</br>
32   * 
33   * @throws NullPointerException
34   *             If the list is null or any strings in the list are null
35   * @throws IllegalArgumentException
36   *             If any strings in the list contain a comma
37   */
38  public class TrimmingCSVStringAdapter extends XmlAdapter<String, List<String>> {
39  
40  	private static final String DELIMITER = ",";
41  
42  	@Override
43  	public final String marshal(List<String> strings) {
44  		if (strings.size() == 0) {
45  			return null;
46  		}
47  		StringBuilder sb = new StringBuilder();
48  		for (int i = 0; i < strings.size(); i++) {
49  			if (i != 0) {
50  				sb.append(DELIMITER);
51  			}
52  			String trimmed = strings.get(i).trim();
53  			Assert.isFalse(StringUtils.contains(trimmed, DELIMITER), "[" + trimmed + "] contains '" + DELIMITER + "'");
54  			sb.append(trimmed);
55  		}
56  		return sb.toString();
57  	}
58  
59  	@Override
60  	public final List<String> unmarshal(String string) {
61  		if (string == null) {
62  			return ImmutableList.of();
63  		} else {
64  			return ImmutableList.copyOf(CollectionUtils.getTrimmedListFromCSV(string));
65  		}
66  	}
67  
68  }