
org.johnnei.enjin.spec.dto.auth.AuthSessionToken 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.auth;
public class AuthSessionToken implements IAuthToken {
private String session_id;
private AuthSessionToken(Builder builder) {
session_id = builder.session_id;
}
public String getSessionId() {
return session_id;
}
public static class Builder {
private String session_id;
public Builder setSessionId(String session_id) {
this.session_id = session_id;
return this;
}
public AuthSessionToken build() {
return new AuthSessionToken(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy