Skip to content

Instantly share code, notes, and snippets.

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