/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package br.usp.nds.remote.conversao; import org.apache.commons.beanutils.Converter; /** * * @author 316030740116 */ public class BooleanConverter implements Converter { public Boolean convert(Class type, Object string) { return "true".equals(string) || "on".equals(string); } }