Friday, February 24, 2017

coding mengambil username password untuk login

/*
 * 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 Class;

/**
 *
 * @author Jack
 */
public class sessionLogin {
    private static String idKasir;
    private static String NamaKasir;
    private static String refresh = "false";
    private static String username;

    /**
     * @return the idKasir
     */
    public static String getIdKasir() {
        return idKasir;
    }

    /**
     * @param aIdKasir the idKasir to set
     */
    public static void setIdKasir(String aIdKasir) {
        idKasir = aIdKasir;
    }

    /**
     * @return the NamaKasir
     */
    public static String getNamaKasir() {
        return NamaKasir;
    }

    /**
     * @param aNamaKasir the NamaKasir to set
     */
    public static void setNamaKasir(String aNamaKasir) {
        NamaKasir = aNamaKasir;
    }

    /**
     * @return the refresh
     */
    public static String getRefresh() {
        return refresh;
    }

    /**
     * @param aRefresh the refresh to set
     */
    public static void setRefresh(String aRefresh) {
        refresh = aRefresh;
    }

    /**
     * @return the username
     */
    public static String getUsername() {
        return username;
    }

    /**
     * @param aUsername the username to set
     */
    public static void setUsername(String aUsername) {
        username = aUsername;
    }
 
}

No comments:

Post a Comment