Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,27 +22,8 @@ public class AuthorizationCode {

private URI redirectUri;

private boolean redirectUriProvidedExplicitly;

public AuthorizationCode() {}

public AuthorizationCode(
String code,
List<String> scopes,
long expiresAt,
String clientId,
String codeChallenge,
URI redirectUri,
boolean redirectUriProvidedExplicitly) {
this.code = code;
this.scopes = scopes;
this.expiresAt = expiresAt;
this.clientId = clientId;
this.codeChallenge = codeChallenge;
this.redirectUri = redirectUri;
this.redirectUriProvidedExplicitly = redirectUriProvidedExplicitly;
}

public String getCode() {
return code;
}
Expand Down Expand Up @@ -98,12 +79,4 @@ public URI getRedirectUri() {
public void setRedirectUri(URI redirectUri) {
this.redirectUri = redirectUri;
}

public boolean isRedirectUriProvidedExplicitly() {
return redirectUriProvidedExplicitly;
}

public void setRedirectUriProvidedExplicitly(boolean redirectUriProvidedExplicitly) {
this.redirectUriProvidedExplicitly = redirectUriProvidedExplicitly;
}
}
Loading