Created
October 21, 2014 15:07
-
-
Save iporsut/9ca2b89eb83f7c555441 to your computer and use it in GitHub Desktop.
DummyAuthorizer Java
This file contains hidden or 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 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