All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jrimum.domkee.banco.IEntidadeDeCobranca Maven / Gradle / Ivy

Go to download

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.domkee.banco;

import java.io.Serializable;
import org.jrimum.domkee.pessoa.AbstractCPRF;
import org.jrimum.domkee.pessoa.Pessoa;

/**
 * @author misael
 *
 */
public abstract class IEntidadeDeCobranca implements Serializable {

    /**
     *
     */
    private static final long serialVersionUID = 8794286412913271840L;

    /**
     * Utilizado como composição
     */
    protected Pessoa pessoa;

    protected IEntidadeDeCobranca() {
        pessoa = new Pessoa();
    }

    protected IEntidadeDeCobranca(String nome) {
        pessoa = new Pessoa(nome);
    }

    protected IEntidadeDeCobranca(String nome, AbstractCPRF cadastroDePessoa) {
        pessoa = new Pessoa(nome, cadastroDePessoa);
    }

    /**
     * @return @see
     * br.com.nordestefomento.jrimum.domkee.financeiro.banco.Pessoa#getNome()
     */
    public String getNome() {
        return pessoa.getNome();
    }

    /**
     * @param nome
     * @see
     * org.jrimum.domkee.pessoa.Pessoa#setNome(java.lang.String)
     */
    public void setNome(String nome) {
        pessoa.setNome(nome);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy