public final class PerTypeExportResult


A result of exporting the credentials to the provider

Summary

Public constructors

PerTypeExportResult(
    @NonNull String credentialType,
    int numSuccess,
    int numFailure,
    int numIgnored
)

Public methods

final @NonNull String

type of credential.

final int

the number of credentials failed to store because they are invalid

final int

the number of credentials ignored because they require additional user input

final int

the number of credentials successfully stored

Public constructors

PerTypeExportResult

Added in 1.0.0-alpha02
public PerTypeExportResult(
    @NonNull String credentialType,
    int numSuccess,
    int numFailure,
    int numIgnored
)

Public methods

getCredentialType

Added in 1.0.0-alpha02
public final @NonNull String getCredentialType()

type of credential. Includes, but not limited to, CredentialTypes

getNumFailure

Added in 1.0.0-alpha02
public final int getNumFailure()

the number of credentials failed to store because they are invalid

getNumIgnored

Added in 1.0.0-alpha02
public final int getNumIgnored()

the number of credentials ignored because they require additional user input

getNumSuccess

Added in 1.0.0-alpha02
public final int getNumSuccess()

the number of credentials successfully stored