org.jrimum.bopepo.campolivre.AbstractCLBancoDoNordesteDoBrasil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bpp-cobranca Show documentation
Show all versions of bpp-cobranca Show documentation
This is a fork and merge from JRimum ( http://www.jrimum.org ),
- Bopepo: https://github.com/jrimum/bopepo
- Texgit: https://github.com/jrimum/texgit
- Valia: https://github.com/jrimum/vallia
- Utilix: https://github.com/jrimum/utilix
- Domkee: https://github.com/jrimum/domkee
For Brazillian Boleto Payment Method. So much thanks for original authors:
Gilmar P. S. L, Misael Barreto and Rômulo Augusto.
The newest version!
/**
*
*/
package org.jrimum.bopepo.campolivre;
import org.jrimum.domkee.banco.Titulo;
/**
*
* Interface comum para todos os campos livres do Banco do Nordeste do
* Brasil que venham a existir.
*
*
* @author Misael Barreto
* @author Paulo Porto
*
* @since 0.2
*
* @version 0.2
*/
public abstract class AbstractCLBancoDoNordesteDoBrasil extends AbstractCampoLivre {
/**
*
*/
private static final long serialVersionUID = -5036970456320987443L;
/**
* Cria um campo livre com um determinado número de campos
*
* @see AbstractCampoLivre
*
* @param fieldsLength - Número de campos
*
* @since 0.2
*/
protected AbstractCLBancoDoNordesteDoBrasil(Integer fieldsLength) {
super(fieldsLength);
}
/**
* @param titulo
* @return um CampoLivre
*
* @see org.jrimum.bopepo.campolivre.AbstractCLBancoDoNordesteDoBrasil#create(Titulo)
*/
protected static CampoLivre create(Titulo titulo){
return new CLBancoDoNordesteDoBrasil().build(titulo);
}
}