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

z11.samplestructs.Account Maven / Gradle / Ivy

There is a newer version: 1.8
Show newest version

package z11.samplestructs;

public class Account {
    private String username;
    private String password;
    
    public Account(String _username, String _pass) {
        this.username = _username;
        this.password = _pass;
    }
    public Account(String _username) {
        this.username = _username;
        this.password = "";
    }
    
    public String getNumber() {
        return username;
    }
    public void setNumber(String _username) {
        this.username = _username;
    }
    public String getPassword() {
        return password;
    }
    public void setPassword(String password) {
        this.password = password;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy