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

studio.core.Credentials Maven / Gradle / Ivy

package studio.core;

public class Credentials {
    private String username;
    private String password;

    public Credentials(String username,String password) {
        this.username = username;
        this.password = password;
    }

    public String getUsername() {
        return username;
    }

    public String getPassword() {
        return password;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy