userid.js

"use strict";
/***************************************************
* Licensed Materials - Property of HCL.
* (c)Copyright HCL America, Inc. 2023-2024
****************************************************/
Object.defineProperty(exports, "__esModule", { value: true });
exports.userIDSwitch = exports.userIDSetPassword = exports.userIDMergeCopy = exports.userIDInfo = exports.userIDEncryptionKeys = exports.userIDCreateSafeCopy = exports.userIDClearPassword = exports.userIDCertificates = exports._notes = void 0;
const tslib_1 = require("tslib");
/**
 * @file User Id
 * @module userid
 * @category User Id
 */
const notesc = tslib_1.__importStar(require("../notes/userid"));
exports._notes = notesc;
//-----------------------------
// Notes @Commands userid
/**
 * Displays the Certificates section of the User ID dialog box. If the user ID is
 * password-protected, the user must enter the password before displaying the
 * dialog box.
 * @throws {Error} no plans to implement
 */
function userIDCertificates() {
    return notesc.UserIDCertificates();
}
exports.userIDCertificates = userIDCertificates;
/**
 * Displays the Enter Password dialog box where the password associated with the
 * user ID can be removed.
 * @throws {Error} no plans to implement
 */
function userIDClearPassword() {
    return notesc.UserIDClearPassword();
}
exports.userIDClearPassword = userIDClearPassword;
/**
 * Displays the Enter Safe Copy ID File Name dialog box, where the user defines a
 * file name for storing a safe copy of the Notes/Domino user ID. The safe copy
 * contains only the user name and public key. The private key and all certificates
 * are omitted from the safe copy.
 * @throws {Error} no plans to implement
 */
function userIDCreateSafeCopy() {
    return notesc.UserIDCreateSafeCopy();
}
exports.userIDCreateSafeCopy = userIDCreateSafeCopy;
/**
 * Displays the Encryption section of the User ID dialog box. If the user ID is
 * password-protected, the user must enter the password before displaying the
 * dialog box.
 * @throws {Error} no plans to implement
 */
function userIDEncryptionKeys() {
    return notesc.UserIDEncryptionKeys();
}
exports.userIDEncryptionKeys = userIDEncryptionKeys;
/**
 * Displays the Basics section of the User ID Information dialog box.
 * @throws {Error} no plans to implement
 */
function userIDInfo() {
    return notesc.UserIDInfo();
}
exports.userIDInfo = userIDInfo;
/**
 * Displays the Choose User ID to Merge into Current® ID dialog box. This lets the
 * user select an updated user ID (for example, one that has been certified by an
 * administrator) and merge it into the existing user ID (thus retaining the
 * information already stored in the existing ID). If the user ID is
 * password-protected, Notes/Domino requires the user to enter the password before
 * displaying the dialog box.
 * @throws {Error} no plans to implement
 */
function userIDMergeCopy() {
    return notesc.UserIDMergeCopy();
}
exports.userIDMergeCopy = userIDMergeCopy;
/**
 * Displays the Set Password dialog box where the user can enter a new password for
 * the Notes/Domino ID. If a password already exists, the user must enter the
 * existing password before specifying a new one.
 * @throws {Error} no plans to implement
 */
function userIDSetPassword() {
    return notesc.UserIDSetPassword();
}
exports.userIDSetPassword = userIDSetPassword;
/**
 * Displays the Choose User ID to Switch To dialog box. If the selected ID is
 * password-protected, Notes/Domino next displays the Enter Password dialog box,
 * where the user must enter the correct password.
 * @throws {Error} no plans to implement
 */
function userIDSwitch() {
    return notesc.UserIDSwitch();
}
exports.userIDSwitch = userIDSwitch;
//# sourceMappingURL=userid.js.map