Skip to content

Instantly share code, notes, and snippets.

@iporsut
Created October 21, 2014 15:07
Show Gist options
  • Save iporsut/9ca2b89eb83f7c555441 to your computer and use it in GitHub Desktop.
Save iporsut/9ca2b89eb83f7c555441 to your computer and use it in GitHub Desktop.
DummyAuthorizer Java
public class DummyAuthorizer implements Authorizer {
public Boolean authorize(String username, String password) {
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment