-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixing javadoc compilation warnings and errors * Updated logger versions (#120) * Updated logger versions (#122) * Updated logger versions (#123) * Rad-741: Fix factors response for latest IdP Release (#124) * Updated logger versions * Added preferredMFA to factorsResponse * Version UP
- Loading branch information
1 parent
eec67f6
commit 3bc760f
Showing
4 changed files
with
47 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
currentVersion=1.1.0.4 | ||
currentVersion=1.1.0.6 |
34 changes: 34 additions & 0 deletions
34
src/main/java/org/secureauth/sarestapi/data/PreferredMFA.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package org.secureauth.sarestapi.data; | ||
|
||
import org.secureauth.sarestapi.util.JSONUtil; | ||
|
||
public class PreferredMFA { | ||
|
||
private String type; | ||
private String mode; | ||
private String available_choosen_mode; | ||
|
||
public String getType() { | ||
return type; | ||
} | ||
public void setType(String type) { | ||
this.type = type; | ||
} | ||
public String getMode() { | ||
return mode; | ||
} | ||
public void setMode(String mode) { | ||
this.mode = mode; | ||
} | ||
public String getAvailable_choosen_mode() { | ||
return available_choosen_mode; | ||
} | ||
public void setAvailable_choosen_mode(String available_choosen_mode) { | ||
this.available_choosen_mode = available_choosen_mode; | ||
} | ||
@Override | ||
public String toString(){ | ||
return JSONUtil.convertObjectToJSON(this); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters