org.jrimum.bopepo.campolivre.AbstractCLBancoRural 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 Fernando Dias -
* Colaborador com o campo livre {@code CLBancoRuralCobrancaRegistrada}
* @author Gilmar P.S.L
*
* @since 0.2
*
* @version 0.2
*/
abstract class AbstractCLBancoRural extends AbstractCampoLivre {
/**
*
*/
private static final long serialVersionUID = -602454445158254612L;
/**
*
* Cria um campo livre com um determinado número de campos
*
* @see AbstractCampoLivre
*
* @param fieldsLength - Número de campos
*/
protected AbstractCLBancoRural(Integer fieldsLength) {
super(fieldsLength);
}
protected static CampoLivre create(Titulo titulo) {
checkCarteiraNotNull(titulo);
checkRegistroDaCarteiraNotNull(titulo);
switch (titulo.getContaBancaria().getCarteira().getTipoCobranca()) {
case SEM_REGISTRO:
return campoSemRegistro(titulo);
case COM_REGISTRO:
return new CLBancoRuralCobrancaRegistrada(titulo);
default:
return null;
}
}
/**
* Determina e cria um campo livre de cobrança não registrada.
*
* @param titulo - título com as informações para geração do campo livre
* @return campo livre ou null
*/
private static CampoLivre campoSemRegistro(Titulo titulo) {
checkNossoNumero(titulo);
switch (titulo.getNossoNumero().length()) {
case NN10:
return new CLBancoRuralCobrancaNaoRegistradaSeguradora(titulo);
case NN15:
return new CLBancoRuralCobrancaNaoRegistrada(titulo);
default:
throw new NotSupportedCampoLivreException(
"Combrança sem registro com campo livre diponível somente para títulos com nosso número"
+ " composto por 10 posições(apólice de seguro com I.O.S.) e 15 posições(padrão)."
);
}
}
}