
org.johnnei.enjin.spec.dto.Credentials Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enjin-api-spec Show documentation
Show all versions of enjin-api-spec Show documentation
The specification of the Enjin API
The newest version!
package org.johnnei.enjin.spec.dto;
public class Credentials {
private final String email;
private final char[] password;
/**
* Creates a new Credential object for authentication with Enjin
* @param email
* @param password
*/
public Credentials(String email, char[] password) {
this.email = email;
this.password = password;
}
public String getEmail() {
return email;
}
public char[] getPassword() {
return password;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy