Last active
May 10, 2019 09:03
-
-
Save ohade/1f7e1e77898447cf2d10e1862486ac45 to your computer and use it in GitHub Desktop.
Bouncer class for medium article
This file contains 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 Bouncer { | |
private final EntranceChecker entranceChecker; | |
public Bouncer(EntranceChecker entranceChecker) { | |
this.entranceChecker = entranceChecker; | |
} | |
public boolean shouldBlock(Person person) { | |
return !entranceChecker.isInTheGuestList(person); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment