Add missing license headers to packetcable-driver messages 50/31450/1
authorThanh Ha <thanh.ha@linuxfoundation.org>
Wed, 16 Dec 2015 15:33:06 +0000 (10:33 -0500)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Wed, 16 Dec 2015 15:49:25 +0000 (10:49 -0500)
Change-Id: Ib6c8bd89d95dae292364b200f350b16f2ad95087
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
packetcable-driver/src/main/java/org/pcmm/messages/IMessage.java
packetcable-driver/src/main/java/org/pcmm/messages/IMessageFactory.java
packetcable-driver/src/main/java/org/pcmm/messages/impl/COPSDecisionMsgEX.java
packetcable-driver/src/main/java/org/pcmm/messages/impl/MessageFactory.java
packetcable-driver/src/main/java/org/pcmm/messages/package-info.java

index e7e5407e160bf94faab853ef9ac6039ceac325b0..3e28967c54ac83118545aef51df365b6dbc7558f 100644 (file)
@@ -1,13 +1,17 @@
-/**
- @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.messages;
 
 /**
  * This defines the messages exchanged between client and server.
- * 
- * 
+ *
+ *
  * <pre>
  * 1 = Request                 (REQ)
  * 2 = Decision                (DEC)
@@ -20,7 +24,7 @@ package org.pcmm.messages;
  * 9 = Keep-Alive              (KA)
  * 10= Synchronize Complete    (SSC)
  * </pre>
- * 
+ *
  */
 public interface IMessage {
 
index 56af33e28449904f8a5550c7753dd9c0b41b276a..413b05435cff9d15353c22f59e169226ffcb2844 100644 (file)
@@ -1,6 +1,11 @@
-/**
- @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.messages;
 
 import org.umu.cops.stack.COPSHeader.OPCode;
@@ -9,10 +14,10 @@ import org.umu.cops.stack.COPSMsg;
 import java.util.Properties;
 
 /**
- * 
+ *
  * Factory used to create {@code COPSMsg} based on message type input and a list
  * of properties.
- * 
+ *
  */
 public interface IMessageFactory {
 
index b7fcd706d379863df806244d10bc7b7c24ed68a1..911465de2ac74b96dc69824ecad39b20d55dddbc 100644 (file)
@@ -1,6 +1,11 @@
-/**
- @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.messages.impl;
 
 import org.umu.cops.stack.*;
index 47ca9dcda00e9adc82aa4647c3d157d2a5fad925..6e48a675cb915d20d51b53d1adf3188fa6f5524e 100644 (file)
@@ -1,6 +1,11 @@
-/**
- * @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.messages.impl;
 
 import org.pcmm.messages.IMessage.MessageProperties;
index 66ddf117c9700ee37452f6a5ab5dc6842b49ae7b..7503e4218e1f89a7375773e8d05290381be7e4e4 100644 (file)
@@ -1,7 +1,12 @@
-/**
- * Package defining the messages exchanged between PCMM client and server.
+/*
+ * 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 defining the messages exchanged between PCMM client and server.
  */
 package org.pcmm.messages;