Skip to content

Instantly share code, notes, and snippets.

@alesj
Created January 6, 2016 11:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alesj/49ecc4fe193b9d2be977 to your computer and use it in GitHub Desktop.
Save alesj/49ecc4fe193b9d2be977 to your computer and use it in GitHub Desktop.
@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