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:
Pascal Knüppel 2025-05-06 09:49:17 +02:00 committed by Marek Posolda
parent 910513f106
commit 27b8a4ffcf
2 changed files with 2 additions and 50 deletions

View File

@ -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;
}
}
}

View File

@ -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;
}
}
}