Created
December 13, 2018 15:18
-
-
Save eldermoraes/7b990d4beb68f2800bbc539c6028fd31 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface Auth { | |
public boolean isLogged(String token); | |
public String login(String login, String password); | |
String logout(String token); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment