API Docs for: 0.0.4
Show:

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;
};