Add missing license headers to packetcable-driver base 43/31443/1
authorThanh Ha <thanh.ha@linuxfoundation.org>
Wed, 16 Dec 2015 15:15:23 +0000 (10:15 -0500)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Wed, 16 Dec 2015 15:19:51 +0000 (10:19 -0500)
Change-Id: I28b6dc3e42e79df89acb56f80c5e6b2842138a12
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
packetcable-driver/src/main/java/org/pcmm/base/IAdapter.java
packetcable-driver/src/main/java/org/pcmm/base/IPCMMBaseObject.java
packetcable-driver/src/main/java/org/pcmm/base/impl/PCMMBaseObject.java

index 42cdd47eefc7ba894e2caa820da826ad2e5a4ce6..0a25fd60373035b858591e85a30f8ab23d659e0f 100644 (file)
@@ -1,11 +1,16 @@
-/**
- * 
+/*
+ * 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.base;
 
 /**
  * Adapter interface
- * 
+ *
  */
 public interface IAdapter<Type> {
 
index 8c658671150c6cb8900581ad0542e977ffa5d172..7367bf1fe157f7c2d7b540f07eb4ef49fe11e1cf 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.base;
@@ -10,7 +14,7 @@ import java.net.Socket;
 /**
  * Base interface for all PCMM objects, it define the {@code S-Type},
  * {@code S-Num} and the data length
- * 
+ *
  */
 public interface IPCMMBaseObject {
 
index 586f2b9cb799162c935c8ec7b2d083a1e429a46e..3aaf34cd93181b6b41bdab6f9edbc5c040658e09 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.base.impl;
@@ -16,7 +20,7 @@ import java.util.ArrayList;
 import java.util.List;
 
 /**
- * 
+ *
  * Abstract implementation of the base class {@link IPCMMBaseObject}
  * Implementations of this class are used for sending/receiving PCMM data to/from a COPS client
  */