Skip to content

Instantly share code, notes, and snippets.

@nayeemzen
Created April 7, 2017 03:23
Show Gist options
  • Save nayeemzen/b14bc520aef738ea0ed739f66722b030 to your computer and use it in GitHub Desktop.
Save nayeemzen/b14bc520aef738ea0ed739f66722b030 to your computer and use it in GitHub Desktop.
class AddressVerifier {
private GoogleMapsClient googleMapsClient;
public AddressVerifier() {
googleMapsClient = new GoogleMapsClient();
}
public boolean isVerified(String address) {
Result verificationResult = googleMapsClient.verifyAddress(address).result;
return verificationResult == Result.SUCCESS;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment