Skip to content

Commit

Permalink
Fix #971: Add column for signature metadata
Browse files Browse the repository at this point in the history
- Incorporate code review comments
  • Loading branch information
jandusil committed Sep 5, 2023
1 parent 6f89a1b commit e2cca7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, property = "type")
@JsonSubTypes({
@JsonSubTypes.Type(value = PowerAuthSignatureMetadata.class,
name = SignatureMetadataType.POWER_AUTH)
name = SignatureMetadataType.POWERAUTH)
})
public interface SignatureMetadata<T1, T2> extends Serializable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ public class SignatureMetadataType {
* Represents PowerAuth signature metadata.
* This value is used for identifying the type of metadata in JSON serialization/deserialization.
*/
public static final String POWER_AUTH = "PowerAuthSignatureMetadata";
public static final String POWERAUTH = "PowerAuthSignatureMetadata";
}

0 comments on commit e2cca7a

Please sign in to comment.