add copyright notices to the newly refactored files
diff --git a/client/lib/commands/create.js b/client/lib/commands/create.js
index 6732395..10396a6 100644
--- a/client/lib/commands/create.js
+++ b/client/lib/commands/create.js
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2015-2016 IBM Corporation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 var inquirer = require('inquirer'),
     ok = require('../repl-messages').ok,
     ok_ = require('../repl-messages').ok_,
diff --git a/client/lib/commands/delete.js b/client/lib/commands/delete.js
index f735572..5ba648a 100644
--- a/client/lib/commands/delete.js
+++ b/client/lib/commands/delete.js
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2015-2016 IBM Corporation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 var created = require('./create').created,
     _list = require('./list')._list,
     ok = require('../repl-messages').ok,
diff --git a/client/lib/commands/list.js b/client/lib/commands/list.js
index 1ac2e52..2f989d9 100644
--- a/client/lib/commands/list.js
+++ b/client/lib/commands/list.js
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2015-2016 IBM Corporation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 var created = require('./create').created,
     Namer = require('../namer'),
     ok = require('../repl-messages').ok,
diff --git a/client/lib/namer.js b/client/lib/namer.js
index 1212f66..2e35296 100644
--- a/client/lib/namer.js
+++ b/client/lib/namer.js
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2015-2016 IBM Corporation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 var uuid = require('uuid');
 
 /**
diff --git a/client/lib/repl-messages.js b/client/lib/repl-messages.js
index 9d44492..85715d1 100644
--- a/client/lib/repl-messages.js
+++ b/client/lib/repl-messages.js
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2015-2016 IBM Corporation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 exports.ok = function ok(next) {
     return function() {
 	console.log('ok');
diff --git a/client/lib/util.js b/client/lib/util.js
index eb49961..8f6bbd0 100644
--- a/client/lib/util.js
+++ b/client/lib/util.js
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2015-2016 IBM Corporation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 var openwhisk = require('openwhisk'),
     api = {
 	host: 'https://openwhisk.ng.bluemix.net',