com.fincatto.documentofiscal.cte400.transformers.CTMotivoInsucessoTransformer 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.cte400.transformers;
import com.fincatto.documentofiscal.cte400.classes.CTMotivoInsucesso;
import org.simpleframework.xml.transform.Transform;
public class CTMotivoInsucessoTransformer implements Transform {
@Override
public CTMotivoInsucesso read(final String codigo) {
return CTMotivoInsucesso.valueOfCodigo(codigo);
}
@Override
public String write(final CTMotivoInsucesso tipo) {
return tipo.getCodigo();
}
}