Skip to content

Instantly share code, notes, and snippets.

@eldermoraes
Created December 13, 2018 15:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eldermoraes/7b990d4beb68f2800bbc539c6028fd31 to your computer and use it in GitHub Desktop.
Save eldermoraes/7b990d4beb68f2800bbc539c6028fd31 to your computer and use it in GitHub Desktop.
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