Created
January 6, 2016 11:46
-
-
Save alesj/49ecc4fe193b9d2be977 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
@JsonIgnoreProperties(ignoreUnknown = true) | |
public class Urls { | |
@JsonProperty("authorization_endpoint") | |
private String authorizationEndpoint; | |
@JsonProperty("token_endpoint") | |
private String tokenEndpoint; | |
public String getAuthorizationEndpoint() { | |
return authorizationEndpoint; | |
} | |
public void setAuthorizationEndpoint(String authorizationEndpoint) { | |
this.authorizationEndpoint = authorizationEndpoint; | |
} | |
public String getTokenEndpoint() { | |
return tokenEndpoint; | |
} | |
public void setTokenEndpoint(String tokenEndpoint) { | |
this.tokenEndpoint = tokenEndpoint; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment