com.agroservices.logic.entidadBancariaFacade.java Source code

Java tutorial

Introduction

Here is the source code for com.agroservices.logic.entidadBancariaFacade.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.agroservices.logic;

import java.util.Date;
import org.springframework.stereotype.Service;

/**
 *
 * @author Andres Melo
 */

@Service
public class entidadBancariaFacade {

    public boolean validarTarjeta(informacionTarjeta tarjeta) {

        Date fecha = new Date();
        boolean respuesta = true;

        if (tarjeta.getNumero() % 2 != 0) {
            System.out.println("Numero tarjeta: " + tarjeta.getNumero() + " Modulo: " + tarjeta.getNumero() % 2);
            respuesta = false;
        }

        if (tarjeta.getAnoVencimiento() < (fecha.getYear() + 1900)) {

            System.out.println("Ao tarjeta: " + tarjeta.getAnoVencimiento() + " Ao de la fecha: "
                    + fecha.getYear() + 1900);
            respuesta = false;
        }

        if (tarjeta.getMesVencimiento() < (fecha.getMonth() + 1)
                && (tarjeta.getAnoVencimiento() == (fecha.getYear() + 1900))) {

            System.out.println("mes tarjeta: " + tarjeta.getMesVencimiento() + " Modulo: " + fecha.getMonth() + 1);
            respuesta = false;
        }

        return respuesta;
    }

}