Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
* order to obtain an assertion for a specific credential.
*
* @author Rob Winch
* @author Andrey Litvitski
* @since 6.4
*/
public final class AuthenticatorTransport implements Serializable {
Expand Down Expand Up @@ -118,7 +119,7 @@ public static AuthenticatorTransport valueOf(String value) {
}

public static AuthenticatorTransport[] values() {
return new AuthenticatorTransport[] { USB, NFC, BLE, HYBRID, INTERNAL };
return new AuthenticatorTransport[] { USB, NFC, BLE, SMART_CARD, HYBRID, INTERNAL };
}

}
Loading