Adding license to java files. 36/8636/1
authorAlex Fan <railor33@gmail.com>
Thu, 3 Jul 2014 21:48:46 +0000 (14:48 -0700)
committerAlex Fan <railor33@gmail.com>
Thu, 3 Jul 2014 21:48:46 +0000 (14:48 -0700)
Change-Id: Idf291b70de9fe2a18fbc3f302a64302e4f214146
Signed-off-by: Alex Fan <railor33@gmail.com>
packethandler/implementation/src/main/java/org/opendaylight/l2switch/packethandler/decoders/AbstractPacketDecoder.java
packethandler/implementation/src/main/java/org/opendaylight/l2switch/packethandler/decoders/ArpDecoder.java
packethandler/implementation/src/main/java/org/opendaylight/l2switch/packethandler/decoders/EthernetDecoder.java
packethandler/implementation/src/main/java/org/opendaylight/l2switch/packethandler/decoders/Ipv4Decoder.java
packethandler/implementation/src/test/java/org/opendaylight/l2switch/packethandler/decoders/ArpDecoderTest.java
packethandler/implementation/src/test/java/org/opendaylight/l2switch/packethandler/decoders/Ipv4DecoderTest.java

index b7e5f57ca9f50281f53024adbc7d353d11d919f0..dc00ac89e65b32b0fbde6d093fae26a61d698535 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2014 Cisco Systems, 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.opendaylight.l2switch.packethandler.decoders;
 
 import com.google.common.collect.ImmutableMap;
index 5a99901043f8d9c3f2d8a98a3be84ccb664c8b15..d61b41b72763b8a7f11c2b1d5088f1fe13fe158e 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2014 Cisco Systems, 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.opendaylight.l2switch.packethandler.decoders;
 
 import org.opendaylight.controller.sal.binding.api.NotificationProviderService;
index 9453fcee484312bacb96d159cce6532d83777ac7..08d50227255845e1fdc12ae5b70b76cbdcd6c6e5 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2014 Cisco Systems, 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.opendaylight.l2switch.packethandler.decoders;
 
 import org.opendaylight.controller.sal.binding.api.NotificationProviderService;
index ef18473675e8614e4d47343f350033ec3b204135..c06c1f16d0a750f4a485d777cf2faa4e3d000f2d 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2014 Cisco Systems, 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.opendaylight.l2switch.packethandler.decoders;
 
 import com.google.common.collect.ImmutableSet;
index a2df44bce0ad4b450eeaa9e3cece682d4e5a91df..177a71fec1e42a2c6f3ebeb8b8d5b107023f225b 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2014 Cisco Systems, 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.opendaylight.l2switch.packethandler.decoders;
 
 import org.junit.Test;
index f3fbcfc7de72d7bd6457a28c3f6471b51942f123..b06d0902294a8e1316bddf50f03144479f03b536 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2014 Cisco Systems, 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.opendaylight.l2switch.packethandler.decoders;
 
 public class Ipv4DecoderTest {