@corbinu/couchbase
Version:
The unofficial Couchbase Node.js Client Library.
20 lines (17 loc) • 418 B
JavaScript
;
/**
* CertificateAuthenticator provides an authenticator implementation
* which uses TLS Certificate Authentication.
*/
class CertificateAuthenticator {
/**
*
* @param {string} certificatePath
* @param {string} keyPath
*/
constructor(certificatePath, keyPath) {
this.certificatePath = certificatePath;
this.keyPath = keyPath;
}
}
module.exports = CertificateAuthenticator;