io.github.robertograham.fortniteapirestclient.domain.Credentials Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fortnite-api-rest-client Show documentation
Show all versions of fortnite-api-rest-client Show documentation
Provides access to the Fortnite REST API
The newest version!
package io.github.robertograham.fortniteapirestclient.domain;
public class Credentials {
private final String epicGamesEmailAddress;
private final String epicGamesPassword;
private final String epicGamesLauncherToken;
private final String fortniteClientToken;
public Credentials(String epicGamesEmailAddress, String epicGamesPassword, String epicGamesLauncherToken, String fortniteClientToken) {
this.epicGamesEmailAddress = epicGamesEmailAddress;
this.epicGamesPassword = epicGamesPassword;
this.epicGamesLauncherToken = epicGamesLauncherToken;
this.fortniteClientToken = fortniteClientToken;
}
public String getEpicGamesEmailAddress() {
return epicGamesEmailAddress;
}
public String getEpicGamesPassword() {
return epicGamesPassword;
}
public String getEpicGamesLauncherToken() {
return epicGamesLauncherToken;
}
public String getFortniteClientToken() {
return fortniteClientToken;
}
@Override
public String toString() {
return "Credentials{" +
"epicGamesEmailAddress='" + epicGamesEmailAddress + '\'' +
", epicGamesPassword='" + epicGamesPassword + '\'' +
", epicGamesLauncherToken='" + epicGamesLauncherToken + '\'' +
", fortniteClientToken='" + fortniteClientToken + '\'' +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy