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

com.github.to2mbn.jyal.SessionService Maven / Gradle / Ivy

There is a newer version: 1.3
Show newest version
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;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy