Skip to content

AuthenticatorTransport#values should return all values #19232

@jzheaux

Description

@jzheaux

AuthenticatorTransport#values() omits SMART_CARD, even though it is a defined constant and is handled correctly in valueOf(String).

Before:

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

After:

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions