Skip to content

Commit

Permalink
Merge pull request #1568 from /issues/1566-VerifyECDSASignatureResponse
Browse files Browse the repository at this point in the history
Fix JSON (de)serialization of VerifyECDSASignatureResponse
  • Loading branch information
banterCZ authored Jun 6, 2024
2 parents b15c8d0 + 203069d commit 12b25c4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions powerauth-client-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@
<artifactId>jackson-annotations</artifactId>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>

<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations-jakarta</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,19 @@

package com.wultra.security.powerauth.client.model.response;

import lombok.Builder;
import lombok.Data;
import lombok.*;
import lombok.extern.jackson.Jacksonized;

/**
* Model class representing response with ECDSA signature verification results.
*
* @author Petr Dvorak, [email protected]
*/
@Builder
@Data
@Getter @ToString @EqualsAndHashCode
@Jacksonized
public class VerifyECDSASignatureResponse {

private boolean signatureValid;
private final boolean signatureValid;

}

0 comments on commit 12b25c4

Please sign in to comment.