@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
39 lines (33 loc) • 1.35 kB
text/typescript
/**
* Copyright © 2023 Nevis Security AG. All rights reserved.
*/
import { UserVerificationContext } from './UserVerificationContext';
import { Authenticator } from '../../localData/Authenticator';
/**
* The object providing information about the device passcode user verification (i.e. the user
* credential validation) operation to be done.
*
* @see {@link DevicePasscodeUserVerifier.verifyDevicePasscode}
*/
export abstract class DevicePasscodeUserVerificationContext extends UserVerificationContext {
/**
* Alternate constructor that creates a {@link DevicePasscodeUserVerificationContext} from a json.
*
* @param json contains the source for instance creation.
* @returns a {@link DevicePasscodeUserVerificationContext} instance.
*/
static fromJson(json: any): DevicePasscodeUserVerificationContext {
return DevicePasscodeUserVerificationContextImpl.fromJson(json);
}
}
export class DevicePasscodeUserVerificationContextImpl extends DevicePasscodeUserVerificationContext {
authenticator: Authenticator;
constructor(authenticator: Authenticator) {
super();
this.authenticator = authenticator;
}
static fromJson(json: any): DevicePasscodeUserVerificationContextImpl {
const authenticator = Authenticator.fromJson(json.authenticator);
return new DevicePasscodeUserVerificationContextImpl(authenticator);
}
}