mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-10 15:32:05 -03:30
Remove c_nonce and c_nonce_expires_in fields
fixes #39276 Signed-off-by: Pascal Knüppel <pascal.knueppel@governikus.de>
This commit is contained in:
parent
910513f106
commit
27b8a4ffcf
@ -32,12 +32,6 @@ public class CredentialResponse {
|
||||
// concrete type depends on the format
|
||||
private Object credential;
|
||||
|
||||
@JsonProperty("c_nonce")
|
||||
private String cNonce;
|
||||
|
||||
@JsonProperty("c_nonce_expires_in")
|
||||
private String cNonceExpiresIn;
|
||||
|
||||
@JsonProperty("notification_id")
|
||||
private String notificationId;
|
||||
|
||||
@ -50,24 +44,6 @@ public class CredentialResponse {
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getcNonce() {
|
||||
return cNonce;
|
||||
}
|
||||
|
||||
public CredentialResponse setcNonce(String cNonce) {
|
||||
this.cNonce = cNonce;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getcNonceExpiresIn() {
|
||||
return cNonceExpiresIn;
|
||||
}
|
||||
|
||||
public CredentialResponse setcNonceExpiresIn(String cNonceExpiresIn) {
|
||||
this.cNonceExpiresIn = cNonceExpiresIn;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getNotificationId() {
|
||||
return notificationId;
|
||||
}
|
||||
@ -76,4 +52,4 @@ public class CredentialResponse {
|
||||
this.notificationId = notificationId;
|
||||
return this;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -33,12 +33,6 @@ public class ErrorResponse {
|
||||
@JsonProperty("error_description")
|
||||
private String errorDescription;
|
||||
|
||||
@JsonProperty("c_nonce")
|
||||
private String cNonce;
|
||||
|
||||
@JsonProperty("c_nonce_expires_in")
|
||||
private long cNonceExpiresIn;
|
||||
|
||||
public ErrorType getError() {
|
||||
return error;
|
||||
}
|
||||
@ -56,22 +50,4 @@ public class ErrorResponse {
|
||||
this.errorDescription = errorDescription;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getcNonce() {
|
||||
return cNonce;
|
||||
}
|
||||
|
||||
public ErrorResponse setcNonce(String cNonce) {
|
||||
this.cNonce = cNonce;
|
||||
return this;
|
||||
}
|
||||
|
||||
public long getcNonceExpiresIn() {
|
||||
return cNonceExpiresIn;
|
||||
}
|
||||
|
||||
public ErrorResponse setcNonceExpiresIn(long cNonceExpiresIn) {
|
||||
this.cNonceExpiresIn = cNonceExpiresIn;
|
||||
return this;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user