UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

29 lines 900 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SessionContextSettings = void 0; class SessionContextSettings { constructor(contextConfiguration) { this.webServiceProtocol = contextConfiguration.getWebServiceProtocol(); this.url = contextConfiguration.getUrl(); this.tlsContext = contextConfiguration.getTlsContext(); this.proxy = contextConfiguration.getProxy(); this.skewTime = contextConfiguration.getSkewTime(); } getWebServiceProtocol() { return this.webServiceProtocol; } getUrl() { return this.url; } getTlsContext() { return this.tlsContext; } getProxy() { return this.proxy; } getSkewTime() { return this.skewTime; } } exports.SessionContextSettings = SessionContextSettings; //# sourceMappingURL=SessionContextSettings.js.map