com.fincatto.documentofiscal.cte200.transformers.CTResponsavelSeguroTransformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nfe Show documentation
Show all versions of nfe Show documentation
Biblioteca de comunicacao de nota fiscal eletronica brasileira
package com.fincatto.documentofiscal.cte200.transformers;
import com.fincatto.documentofiscal.cte200.classes.CTResponsavelSeguro;
import org.simpleframework.xml.transform.Transform;
public class CTResponsavelSeguroTransformer implements Transform {
@Override
public CTResponsavelSeguro read(final String codigo) {
return CTResponsavelSeguro.valueOfCodigo(codigo);
}
@Override
public String write(final CTResponsavelSeguro tipo) {
return tipo.getCodigo();
}
}