Created
May 31, 2019 14:10
-
-
Save mchmielarz/214ef015656ed2ea1e67e72832d6895b to your computer and use it in GitHub Desktop.
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
@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