UNPKG

@adobe/pdfservices-node-sdk

Version:

The Adobe PDF Services Node.js SDK provides APIs for creating, combining, exporting and manipulating PDFs.

38 lines 1.3 kB
"use strict"; /* * Copyright 2024 Adobe * All Rights Reserved. * * NOTICE: Adobe permits you to use, modify, and distribute this file in * accordance with the terms of the Adobe license agreement accompanying * it. If you have received this file from a source other than Adobe, * then your use, modification, or distribution of it requires the prior * written permission of Adobe. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.SecuritySettings = void 0; /** * This class provides information about the security settings of the specified PDF file, such as encryption and * permission settings. */ class SecuritySettings { /** * Returns an {@link EncryptionSettings} instance specifying encryption settings of the PDF. * * @returns an {@link EncryptionSettings} instance. */ get encryptionSettings() { return this._encryptionSettings; } /** * Returns a {@link PermissionSettings} instance specifying permissions settings of the PDF such as content * copying, editing etc. * * @returns A {@link PermissionSettings} instance. */ get permissionSettings() { return this._permissionSettings; } } exports.SecuritySettings = SecuritySettings; //# sourceMappingURL=SecuritySettings.js.map