View Javadoc
1   /**
2    * Copyright 2004-2015 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.kpme.core;
17  
18  import java.util.ArrayList;
19  import java.util.List;
20  
21  import org.apache.commons.lang.StringUtils;
22  import org.apache.ojb.broker.accesslayer.conversions.ConversionException;
23  import org.apache.ojb.broker.accesslayer.conversions.FieldConversion;
24  
25  public class ListConverter implements FieldConversion{
26  
27  	/**
28  	 * 
29  	 */
30  	private static final long serialVersionUID = 1L;
31  
32  	@Override
33  	public Object javaToSql(Object arg0) throws ConversionException {
34  		return arg0;
35  	}
36  
37  	// To convert a string that contains selected values in checkbox group control or
38  	// multi select control in the database table to the back model property, 
39  	// which is a list type of primitives (usually string)
40  	@Override
41  	public Object sqlToJava(Object arg0) throws ConversionException {
42  		
43  		String selectedValues = arg0.toString();
44  		List<String> aList = new ArrayList<String>();
45  		
46  		selectedValues = StringUtils.removeStart(selectedValues, "[");
47  		selectedValues = StringUtils.removeEnd(selectedValues, "]");
48  		String[] values = StringUtils.split(selectedValues, ",");
49  		
50  		for(String value : values){
51  			aList.add(StringUtils.strip(value, " ")); // strip whitespace from the start and end
52  		}
53  		
54  
55  		return aList;
56  	}
57  
58  }