UNPKG

sf-placeholder

Version:

Creates a Visualforce Page and placeholder Static Resource for use with Angular JS.

37 lines (27 loc) 672 B
module.exports = { //TODO: add config file create config file. userName : '', password : '', token :'', setUserName: function(userName) { this.userName = userName; return "user name set"; }, setPassword: function(password) { this.password = password; return "user name set"; }, setToken: function(token) { this.token = token; return "user name set"; }, getUserName: function(userName) { return this.userName; }, getPassword: function(password) { return this.password; }, getToken: function(token) { return this.token; } };