File: lib\security\authentication.js
/**
*
* @class Authentication
* @constructor
*/
module.exports = function() {
/**
* This method is implemented by the extending class.
* @method authorize
* @param {Object} options The object to authorize
* @return {Object} The modified object or an object to use for authorization
*/
this.authorize = function() {
};
};
