Skip to content

Instantly share code, notes, and snippets.

@nayeemzen
Last active January 1, 2018 04:26
Show Gist options
  • Save nayeemzen/022ac68323e46a47a428f230313db468 to your computer and use it in GitHub Desktop.
Save nayeemzen/022ac68323e46a47a428f230313db468 to your computer and use it in GitHub Desktop.
class AddressVerifier {
  private MapsClient mapsClient;
public AddressVerifier(MapsClient mapsClient) {
this.mapsClient = mapsClient;
}
public boolean isVerified(String address) {
return mapsClient.isVerified(address);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment