org.jrimum.bopepo.campolivre.AbstractCLSantander 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 Santander que venham a
* existir.
*
*
* @author Gilmar P.S.L
*
* @since 0.2
*
* @version 0.2
*/
abstract class AbstractCLSantander extends AbstractCampoLivre {
/**
*
*/
private static final long serialVersionUID = 1882819688182515282L;
/**
* Cria um campo livre com um determinado número de campos
*
* @see AbstractCampoLivre
*
* @param fieldsLength - Número de campos
*/
protected AbstractCLSantander(Integer fieldsLength) {
super(fieldsLength);
}
protected static CampoLivre create(Titulo titulo) {
return new CLBancoSantander(titulo);
}
}