Remove deprecations in ClientRegistration

Closes gh-11518
This commit is contained in:
Joe Grandja 2022-07-15 07:53:57 -04:00
parent 61b034bf69
commit e12823095f

View File

@ -110,16 +110,6 @@ public final class ClientRegistration implements Serializable {
return this.authorizationGrantType;
}
/**
* Returns the uri (or uri template) for the redirection endpoint.
* @return the uri (or uri template) for the redirection endpoint
* @deprecated Use {@link #getRedirectUri()} instead
*/
@Deprecated
public String getRedirectUriTemplate() {
return getRedirectUri();
}
/**
* Returns the uri (or uri template) for the redirection endpoint.
*
@ -443,18 +433,6 @@ public final class ClientRegistration implements Serializable {
return this;
}
/**
* Sets the uri (or uri template) for the redirection endpoint.
* @param redirectUriTemplate the uri (or uri template) for the redirection
* endpoint
* @return the {@link Builder}
* @deprecated Use {@link #redirectUri(String)} instead
*/
@Deprecated
public Builder redirectUriTemplate(String redirectUriTemplate) {
return redirectUri(redirectUriTemplate);
}
/**
* Sets the uri (or uri template) for the redirection endpoint.
*