Add missing license headers to packetcable-driver rcd 53/31453/1
authorThanh Ha <thanh.ha@linuxfoundation.org>
Wed, 16 Dec 2015 15:36:31 +0000 (10:36 -0500)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Wed, 16 Dec 2015 15:49:26 +0000 (10:49 -0500)
Change-Id: Ica18e55a119db8aae9f9914eb228b5c9ef6d0d4b
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
packetcable-driver/src/main/java/org/pcmm/rcd/ICMTS.java
packetcable-driver/src/main/java/org/pcmm/rcd/IPCMMClient.java
packetcable-driver/src/main/java/org/pcmm/rcd/IPCMMServer.java
packetcable-driver/src/main/java/org/pcmm/rcd/impl/AbstractPCMMClient.java
packetcable-driver/src/main/java/org/pcmm/rcd/impl/AbstractPCMMServer.java
packetcable-driver/src/main/java/org/pcmm/rcd/package-info.java

index 580ea2c07ef1eebb8be2136dae8c23788b0fd0dc..39e3ea0ce08ca6ef283623f0c642c69319d7dd38 100644 (file)
@@ -1,5 +1,9 @@
-/**
- @header@
+/*
+ * Copyright (c) 2014, 2015 Cable Television Laboratories, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
 
 package org.pcmm.rcd;
@@ -34,8 +38,8 @@ package org.pcmm.rcd;
  * The CMTS acts as a server (PS should send OPN message to CMTS to initiate
  * communication), and acts as a client for the rest of the exchange process.
  * </p>
- * 
- * 
+ *
+ *
  */
 public interface ICMTS extends IPCMMServer {
 
index 81cdbd67e7fb5f3101657029b05d0761cd182c57..7830b5b0b864cd0c0b3dfecda6b5c4e1894f6adb 100644 (file)
@@ -1,5 +1,9 @@
 /*
- * (c) 2015 Cable Television Laboratories, Inc.  All rights reserved.
+ * Copyright (c) 2014, 2015 Cable Television Laboratories, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
 
 package org.pcmm.rcd;
@@ -19,8 +23,8 @@ import java.io.IOException;
  * service, and does not (cannot) request QoS resources directly from the MSO
  * access network.
  * </p>
- * 
- * 
+ *
+ *
  */
 public interface IPCMMClient {
 
@@ -31,7 +35,7 @@ public interface IPCMMClient {
 
        /**
         * sends a message to the server.
-        * 
+        *
         * @param requestMessage
         *            request message.
         */
@@ -39,7 +43,7 @@ public interface IPCMMClient {
 
        /**
         * Reads message from server
-        * 
+        *
         * @return COPS message
         */
        COPSMsg readMessage();
@@ -52,20 +56,20 @@ public interface IPCMMClient {
 
        /**
         * disconnects from server.
-        * 
+        *
         * @return disconnection status.
         */
        boolean disconnect();
 
        /**
-        * 
+        *
         * @return whether the client is connected to the server of not.
         */
        boolean isConnected();
 
        /**
         * gets the client handle
-        * 
+        *
         * @return client handle
         */
        COPSHandle getClientHandle();
index e27e1ef93e1762c2450a7853505ef39b1c1e84a9..5a90a000cc48595799b02033585ffab6f2ea9a59 100644 (file)
@@ -1,5 +1,9 @@
 /*
- * (c) 2015 Cable Television Laboratories, Inc.  All rights reserved.
+ * Copyright (c) 2014, 2015 Cable Television Laboratories, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
 
 package org.pcmm.rcd;
index 639265e8894826231844652ea56678553a9c163a..39ea1d81f1edb1f6f71425cac1e85a15be739602 100644 (file)
@@ -1,5 +1,9 @@
 /*
- * (c) 2015 Cable Television Laboratories, Inc.  All rights reserved.
+ * Copyright (c) 2014, 2015 Cable Television Laboratories, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
 
 package org.pcmm.rcd.impl;
index eeb3b0eb096cf96ed7e1f1330315f128bcbe467b..c6808c842d9de69a47802d4b2cde9b108eb6e0c7 100644 (file)
@@ -1,5 +1,9 @@
 /*
- * (c) 2015 Cable Television Laboratories, Inc.  All rights reserved.
+ * Copyright (c) 2014, 2015 Cable Television Laboratories, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
 
 package org.pcmm.rcd.impl;
@@ -72,7 +76,7 @@ public abstract class AbstractPCMMServer implements IPCMMServer {
 
        /*
         * (non-Javadoc)
-        * 
+        *
         * @see pcmm.rcd.IPCMMServer#startServer()
         */
        public void startServer() throws IOException {
@@ -108,7 +112,7 @@ public abstract class AbstractPCMMServer implements IPCMMServer {
        /**
         * This client is used to handle requests from within the Application
         * Manager
-        * 
+        *
         * @param socket - the connection to the PCMM server
         * @return client handler
         */
index 0d21830bd15e9d59142091dd2d079a4a77cd0aae..ee0939c935fa63023f899df61d62a398fdf882c4 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2014, 2015 Cable Television Laboratories, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
 
 /**
  * <p>