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

za.co.knonchalant.candogram.handlers.User Maven / Gradle / Ivy

The newest version!
package za.co.knonchalant.candogram.handlers;

public class User {
    private String userName;
    private String firstName;
    private String lastName;
    private long id;


    public User(long id, String userName, String firstName, String lastName) {
        this.id = id;
        this.userName = userName;
        this.firstName = firstName;
        this.lastName = lastName;
    }

    public String getUserName() {
        return userName;
    }

    public String getFirstName() {
        return firstName;
    }

    public String getLastName() {
        return lastName;
    }

    public long getId() {
        return id;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy