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

org.jrimum.domkee.banco.Convenio 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 java.util.Date;


/**
 * @author i311020
 *
 */
public class Convenio implements Serializable {
	
	/**
	 * 
	 */
	private static final long serialVersionUID = 8371261211322002627L;

	private IBanco banco;
	private Agencia agencia;
	private Integer numero;
	private Date dataInicio;
	private Date dataFim;
	
	/**
	 * 
	 */
	public Convenio() {
	
	}

	/**
	 * @param banco
	 * @param numero
	 */
	public Convenio(IBanco banco, Integer numero) {
		this.banco = banco;
		this.numero = numero;
	}

	/**
	 * @return the banco
	 */
	public IBanco getBanco() {
		return banco;
	}

	/**
	 * @param banco the banco to set
	 */
	public void setBanco(IBanco banco) {
		this.banco = banco;
	}

	/**
	 * @return the agencia
	 */
	public Agencia getAgencia() {
		return agencia;
	}

	/**
	 * @param agencia the agencia to set
	 */
	public void setAgencia(Agencia agencia) {
		this.agencia = agencia;
	}

	/**
	 * @return the numero
	 */
	public Integer getNumero() {
		return numero;
	}

	/**
	 * @param numero the numero to set
	 */
	public void setNumero(Integer numero) {
		this.numero = numero;
	}

	/**
	 * @return the dataInicio
	 */
	public Date getDataInicio() {
		return dataInicio;
	}

	/**
	 * @param dataInicio the dataInicio to set
	 */
	public void setDataInicio(Date dataInicio) {
		this.dataInicio = dataInicio;
	}

	/**
	 * @return the dataFim
	 */
	public Date getDataFim() {
		return dataFim;
	}

	/**
	 * @param dataFim the dataFim to set
	 */
	public void setDataFim(Date dataFim) {
		this.dataFim = dataFim;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy