com.github.to2mbn.jyal.SessionService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jyal Show documentation
Show all versions of jyal Show documentation
Java Yggdrasil Authentication Library
package com.github.to2mbn.jyal;
public interface SessionService {
Session login(String username, String password) throws AuthenticationException;
Session loginWithToken(String token) throws AuthenticationException;
boolean isValid(String token) throws AuthenticationException;
}