File: lib\security\authentication-credentials.js
/**
*
* @class CredentialAuthentication
* @constructor
* @param {String} username
* @param {String} password
*/
module.exports = function(username, password) {
this.username = username;
this.password = password;
};
