All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.podio.item.map.converter.ProgressConverter Maven / Gradle / Ivy

package com.podio.item.map.converter;

import java.util.Collections;
import java.util.Map;

import org.apache.commons.beanutils.ConvertUtils;

public class ProgressConverter implements FieldConverter {

	@Override
	public Map fromModel(Object value) {
		Integer integerValue = (Integer) ConvertUtils.convert(value,
				Integer.class);

		return Collections.singletonMap("value", integerValue);
	}

	@Override
	public Object toModel(Map map, Class modelClass) {
		Integer value = (Integer) map.get("value");

		return ConvertUtils.convert(value, modelClass);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy