Skip to content

Instantly share code, notes, and snippets.

@mchmielarz
Created May 31, 2019 14:10
Show Gist options
  • Save mchmielarz/214ef015656ed2ea1e67e72832d6895b to your computer and use it in GitHub Desktop.
Save mchmielarz/214ef015656ed2ea1e67e72832d6895b to your computer and use it in GitHub Desktop.
@Value
@Accessors(fluent = true)
class AccessToken {
private final String value;
}
class BusinessIdExtractor {
BusinessId extract(AccessToken accessToken) {
return new BusinessId(JWT.decode(accessToken.value()).getClaim("businessId"));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment