@azure/msal-browser
Version:
Microsoft Authentication Library for js
35 lines (31 loc) • 1.07 kB
text/typescript
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { AuthFlowActionRequiredStateBase } from "../../../core/auth_flow/AuthFlowState.js";
import { ensureArgumentIsNotEmptyString } from "../../../core/utils/ArgumentValidator.js";
import { SignUpStateParameters } from "./SignUpStateParameters.js";
/*
* Base state handler for sign-up flow.
*/
export abstract class SignUpState<
TParameters extends SignUpStateParameters
> extends AuthFlowActionRequiredStateBase<TParameters> {
/*
* Creates a new SignUpState.
* @param stateParameters - The state parameters for sign-up.
*/
constructor(stateParameters: TParameters) {
super(stateParameters);
ensureArgumentIsNotEmptyString(
"username",
stateParameters.username,
stateParameters.correlationId
);
ensureArgumentIsNotEmptyString(
"continuationToken",
stateParameters.continuationToken,
stateParameters.correlationId
);
}
}