46 lines
830 B
JavaScript
46 lines
830 B
JavaScript
const { mix } = require('./utils');
|
|
|
|
const Base = require('./base');
|
|
|
|
const MixinSpecificationExtensions = require('../mixins/specification-extensions');
|
|
|
|
/**
|
|
* Implements functions to deal with a OAuthFlow object.
|
|
* @class
|
|
* @alias module:@asyncapi/parser#OAuthFlow
|
|
* @extends Base
|
|
* @mixes MixinSpecificationExtensions
|
|
* @returns {OAuthFlow}
|
|
*/
|
|
class OAuthFlow extends Base {
|
|
/**
|
|
* @returns {string}
|
|
*/
|
|
authorizationUrl() {
|
|
return this._json.authorizationUrl;
|
|
}
|
|
|
|
/**
|
|
* @returns {string}
|
|
*/
|
|
tokenUrl() {
|
|
return this._json.tokenUrl;
|
|
}
|
|
|
|
/**
|
|
* @returns {string}
|
|
*/
|
|
refreshUrl() {
|
|
return this._json.refreshUrl;
|
|
}
|
|
|
|
/**
|
|
* @returns {Object<string, string>}
|
|
*/
|
|
scopes() {
|
|
return this._json.scopes;
|
|
}
|
|
}
|
|
|
|
module.exports = mix(OAuthFlow, MixinSpecificationExtensions);
|