Skip to content

Instantly share code, notes, and snippets.

@luissilvazup
Last active June 17, 2020 21:35
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 luissilvazup/c604d01e75fe6fd5bb503fc9bc1f03a3 to your computer and use it in GitHub Desktop.
Save luissilvazup/c604d01e75fe6fd5bb503fc9bc1f03a3 to your computer and use it in GitHub Desktop.
DIP Solution Part 1
public class D_DependencyInversionSolution {
@AllArgsConstructor
private static class AuthenticateLogin {
private final Authentication authentication;
public boolean login(User user){
return authentication.login(user);
}
}
private interface Authentication {
boolean login(User user);
}
private static class AuthenticationLinkedin implements Authentication {
public boolean login(User user) {
//autêntica o login com o Oauth Linkedin.
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment