25 lines
507 B
JavaScript
25 lines
507 B
JavaScript
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
||
|
/* exported CredentialManager */
|
||
|
|
||
|
class CredentialManager {
|
||
|
constructor(service) {
|
||
|
this._token = null;
|
||
|
this._service = service;
|
||
|
this._authenticatedSignalId = null;
|
||
|
}
|
||
|
|
||
|
get token() {
|
||
|
return this._token;
|
||
|
}
|
||
|
|
||
|
set token(t) {
|
||
|
this._token = t;
|
||
|
if (this._token)
|
||
|
this.emit('user-authenticated', this._token);
|
||
|
}
|
||
|
|
||
|
get service() {
|
||
|
return this._service;
|
||
|
}
|
||
|
}
|