From d1d86311758333f1d721dc76f4e59ecbc29081b2 Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Fri, 22 Jul 2016 21:41:44 -0400 Subject: [PATCH] Add missing license headers Change-Id: Ifad42ad84b1b0f5539dc3a1fcf460ee7d8f9da47 Signed-off-by: Thanh Ha --- .../src/test/java/org/pcmm/gates/impl/AMIDTest.java | 7 +++++-- .../java/org/pcmm/gates/impl/BestEffortServiceTest.java | 7 +++++++ .../src/test/java/org/pcmm/gates/impl/ClassifierTest.java | 7 +++++-- .../impl/DOCSISServiceClassNameTrafficProfileTest.java | 7 +++++++ .../java/org/pcmm/gates/impl/ExtendedClassifierTest.java | 7 +++++-- .../src/test/java/org/pcmm/gates/impl/GateIDTest.java | 7 +++++-- .../src/test/java/org/pcmm/gates/impl/GateSpecTest.java | 7 +++++-- .../test/java/org/pcmm/gates/impl/IPv6ClassifierTest.java | 7 +++++-- .../src/test/java/org/pcmm/gates/impl/PCMMErrorTest.java | 7 +++++-- .../test/java/org/pcmm/gates/impl/SessionClassIDTest.java | 7 +++++++ .../test/java/org/pcmm/gates/impl/SubscriberIDTest.java | 7 +++++-- .../test/java/org/pcmm/gates/impl/TransactionIDTest.java | 7 +++++-- .../src/test/java/org/pcmm/objects/MMVersionInfoTest.java | 7 +++++-- .../src/test/java/org/pcmm/objects/SyncOptionsTest.java | 7 +++++-- .../src/test/java/org/pcmm/test/PCMMResourceSetTest.java | 7 +++++++ 15 files changed, 83 insertions(+), 22 deletions(-) diff --git a/packetcable-driver/src/test/java/org/pcmm/gates/impl/AMIDTest.java b/packetcable-driver/src/test/java/org/pcmm/gates/impl/AMIDTest.java index 57e5779..b9249d2 100644 --- a/packetcable-driver/src/test/java/org/pcmm/gates/impl/AMIDTest.java +++ b/packetcable-driver/src/test/java/org/pcmm/gates/impl/AMIDTest.java @@ -1,7 +1,10 @@ /* - * (c) 2015 Cable Television Laboratories, Inc. All rights reserved. + * Copyright (c) 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.gates.impl; import org.junit.Assert; diff --git a/packetcable-driver/src/test/java/org/pcmm/gates/impl/BestEffortServiceTest.java b/packetcable-driver/src/test/java/org/pcmm/gates/impl/BestEffortServiceTest.java index fd9fb7b..c6f1a56 100644 --- a/packetcable-driver/src/test/java/org/pcmm/gates/impl/BestEffortServiceTest.java +++ b/packetcable-driver/src/test/java/org/pcmm/gates/impl/BestEffortServiceTest.java @@ -1,3 +1,10 @@ +/* + * Copyright (c) 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.gates.impl; import org.junit.Assert; diff --git a/packetcable-driver/src/test/java/org/pcmm/gates/impl/ClassifierTest.java b/packetcable-driver/src/test/java/org/pcmm/gates/impl/ClassifierTest.java index 9c1590e..8ff7257 100644 --- a/packetcable-driver/src/test/java/org/pcmm/gates/impl/ClassifierTest.java +++ b/packetcable-driver/src/test/java/org/pcmm/gates/impl/ClassifierTest.java @@ -1,7 +1,10 @@ /* - * (c) 2015 Cable Television Laboratories, Inc. All rights reserved. + * Copyright (c) 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.gates.impl; import org.junit.Assert; diff --git a/packetcable-driver/src/test/java/org/pcmm/gates/impl/DOCSISServiceClassNameTrafficProfileTest.java b/packetcable-driver/src/test/java/org/pcmm/gates/impl/DOCSISServiceClassNameTrafficProfileTest.java index 7edc025..eb3e77b 100644 --- a/packetcable-driver/src/test/java/org/pcmm/gates/impl/DOCSISServiceClassNameTrafficProfileTest.java +++ b/packetcable-driver/src/test/java/org/pcmm/gates/impl/DOCSISServiceClassNameTrafficProfileTest.java @@ -1,3 +1,10 @@ +/* + * Copyright (c) 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.gates.impl; import org.junit.Assert; diff --git a/packetcable-driver/src/test/java/org/pcmm/gates/impl/ExtendedClassifierTest.java b/packetcable-driver/src/test/java/org/pcmm/gates/impl/ExtendedClassifierTest.java index 130e36f..ceab8bd 100644 --- a/packetcable-driver/src/test/java/org/pcmm/gates/impl/ExtendedClassifierTest.java +++ b/packetcable-driver/src/test/java/org/pcmm/gates/impl/ExtendedClassifierTest.java @@ -1,7 +1,10 @@ /* - * (c) 2015 Cable Television Laboratories, Inc. All rights reserved. + * Copyright (c) 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.gates.impl; import org.junit.Assert; diff --git a/packetcable-driver/src/test/java/org/pcmm/gates/impl/GateIDTest.java b/packetcable-driver/src/test/java/org/pcmm/gates/impl/GateIDTest.java index 32e87e8..8f46725 100644 --- a/packetcable-driver/src/test/java/org/pcmm/gates/impl/GateIDTest.java +++ b/packetcable-driver/src/test/java/org/pcmm/gates/impl/GateIDTest.java @@ -1,7 +1,10 @@ /* - * (c) 2015 Cable Television Laboratories, Inc. All rights reserved. + * Copyright (c) 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.gates.impl; import org.junit.Assert; diff --git a/packetcable-driver/src/test/java/org/pcmm/gates/impl/GateSpecTest.java b/packetcable-driver/src/test/java/org/pcmm/gates/impl/GateSpecTest.java index e63e3f5..e46866b 100644 --- a/packetcable-driver/src/test/java/org/pcmm/gates/impl/GateSpecTest.java +++ b/packetcable-driver/src/test/java/org/pcmm/gates/impl/GateSpecTest.java @@ -1,7 +1,10 @@ /* - * (c) 2015 Cable Television Laboratories, Inc. All rights reserved. + * Copyright (c) 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.gates.impl; import org.junit.Assert; diff --git a/packetcable-driver/src/test/java/org/pcmm/gates/impl/IPv6ClassifierTest.java b/packetcable-driver/src/test/java/org/pcmm/gates/impl/IPv6ClassifierTest.java index 01c7a78..28b8fc2 100644 --- a/packetcable-driver/src/test/java/org/pcmm/gates/impl/IPv6ClassifierTest.java +++ b/packetcable-driver/src/test/java/org/pcmm/gates/impl/IPv6ClassifierTest.java @@ -1,7 +1,10 @@ /* - * (c) 2015 Cable Television Laboratories, Inc. All rights reserved. + * Copyright (c) 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.gates.impl; import org.junit.Assert; diff --git a/packetcable-driver/src/test/java/org/pcmm/gates/impl/PCMMErrorTest.java b/packetcable-driver/src/test/java/org/pcmm/gates/impl/PCMMErrorTest.java index 4a72fed..c50215e 100644 --- a/packetcable-driver/src/test/java/org/pcmm/gates/impl/PCMMErrorTest.java +++ b/packetcable-driver/src/test/java/org/pcmm/gates/impl/PCMMErrorTest.java @@ -1,7 +1,10 @@ /* - * (c) 2015 Cable Television Laboratories, Inc. All rights reserved. + * Copyright (c) 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.gates.impl; import org.junit.Assert; diff --git a/packetcable-driver/src/test/java/org/pcmm/gates/impl/SessionClassIDTest.java b/packetcable-driver/src/test/java/org/pcmm/gates/impl/SessionClassIDTest.java index 67d3fa3..af441fa 100644 --- a/packetcable-driver/src/test/java/org/pcmm/gates/impl/SessionClassIDTest.java +++ b/packetcable-driver/src/test/java/org/pcmm/gates/impl/SessionClassIDTest.java @@ -1,3 +1,10 @@ +/* + * Copyright (c) 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.gates.impl; import org.junit.Assert; diff --git a/packetcable-driver/src/test/java/org/pcmm/gates/impl/SubscriberIDTest.java b/packetcable-driver/src/test/java/org/pcmm/gates/impl/SubscriberIDTest.java index 9d96a24..b59257f 100644 --- a/packetcable-driver/src/test/java/org/pcmm/gates/impl/SubscriberIDTest.java +++ b/packetcable-driver/src/test/java/org/pcmm/gates/impl/SubscriberIDTest.java @@ -1,7 +1,10 @@ /* - * (c) 2015 Cable Television Laboratories, Inc. All rights reserved. + * Copyright (c) 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.gates.impl; import org.junit.Assert; diff --git a/packetcable-driver/src/test/java/org/pcmm/gates/impl/TransactionIDTest.java b/packetcable-driver/src/test/java/org/pcmm/gates/impl/TransactionIDTest.java index 2639c6f..90f55fa 100644 --- a/packetcable-driver/src/test/java/org/pcmm/gates/impl/TransactionIDTest.java +++ b/packetcable-driver/src/test/java/org/pcmm/gates/impl/TransactionIDTest.java @@ -1,7 +1,10 @@ /* - * (c) 2015 Cable Television Laboratories, Inc. All rights reserved. + * Copyright (c) 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.gates.impl; import org.junit.Assert; diff --git a/packetcable-driver/src/test/java/org/pcmm/objects/MMVersionInfoTest.java b/packetcable-driver/src/test/java/org/pcmm/objects/MMVersionInfoTest.java index cc07747..52d6edf 100644 --- a/packetcable-driver/src/test/java/org/pcmm/objects/MMVersionInfoTest.java +++ b/packetcable-driver/src/test/java/org/pcmm/objects/MMVersionInfoTest.java @@ -1,7 +1,10 @@ /* - * (c) 2015 Cable Television Laboratories, Inc. All rights reserved. + * Copyright (c) 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.objects; import org.junit.Assert; diff --git a/packetcable-driver/src/test/java/org/pcmm/objects/SyncOptionsTest.java b/packetcable-driver/src/test/java/org/pcmm/objects/SyncOptionsTest.java index 65aee3e..2848085 100644 --- a/packetcable-driver/src/test/java/org/pcmm/objects/SyncOptionsTest.java +++ b/packetcable-driver/src/test/java/org/pcmm/objects/SyncOptionsTest.java @@ -1,7 +1,10 @@ /* - * (c) 2015 Cable Television Laboratories, Inc. All rights reserved. + * Copyright (c) 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.objects; import org.junit.Assert; diff --git a/packetcable-driver/src/test/java/org/pcmm/test/PCMMResourceSetTest.java b/packetcable-driver/src/test/java/org/pcmm/test/PCMMResourceSetTest.java index 5f17e59..a0c81eb 100644 --- a/packetcable-driver/src/test/java/org/pcmm/test/PCMMResourceSetTest.java +++ b/packetcable-driver/src/test/java/org/pcmm/test/PCMMResourceSetTest.java @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2014 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.test; import static org.junit.Assert.*; -- 2.36.6