Skip to content

Commit

Permalink
fix: swap oxCodeChallengeHash
Browse files Browse the repository at this point in the history
  • Loading branch information
jgomer2001 committed Apr 20, 2022
1 parent b38ed9a commit c3cc9af
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ public class Fido2AuthenticationEntry extends Fido2Entry implements Serializable
@AttributeName(name = "oxStatus")
private Fido2AuthenticationStatus authenticationStatus;

@AttributeName(name = "oxCodeChallengeHash")
private String challangeHash;

public Fido2AuthenticationEntry() {
}

Expand All @@ -59,14 +56,6 @@ public void setAuthenticationStatus(Fido2AuthenticationStatus authenticationStat
this.authenticationStatus = authenticationStatus;
}

public String getChallangeHash() {
return challangeHash;
}

public void setChallangeHash(String challangeHash) {
this.challangeHash = challangeHash;
}

@Override
public String toString() {
StringBuilder builder = new StringBuilder();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ public class Fido2RegistrationEntry extends Fido2Entry implements Serializable {
@AttributeName(name = "oxDeviceNotificationConf")
private String deviceNotificationConf;

@AttributeName(name = "oxCodeChallengeHash")
private String challangeHash;

public Fido2RegistrationEntry() {
}

Expand Down Expand Up @@ -101,6 +104,14 @@ public void setDisplayName(String displayName) {
this.displayName = displayName;
}

public String getChallangeHash() {
return challangeHash;
}

public void setChallangeHash(String challangeHash) {
this.challangeHash = challangeHash;
}

@Override
public String toString() {
StringBuilder builder = new StringBuilder();
Expand Down

0 comments on commit c3cc9af

Please sign in to comment.