Adding EPL to sample code dnsguard/proactive 50/9250/1
authorLuis Chiang <luis@chiang.ec>
Tue, 22 Jul 2014 23:20:35 +0000 (16:20 -0700)
committerLuis Chiang <luis@chiang.ec>
Tue, 22 Jul 2014 23:20:35 +0000 (16:20 -0700)
Change-Id: I4c55c8a70cf9d4cc338d1c810068e2f354405186
Signed-off-by: Luis Chiang <luis@chiang.ec>
14 files changed:
samples/dnsguard/README.md
samples/dnsguard/src/main/java/org/sdnhub/dnsguard/DnsGuard.java
samples/dnsguard/src/main/java/org/sdnhub/dnsguard/DnsGuardPersistence.java
samples/dnsguard/src/main/java/org/sdnhub/dnsguard/DnsReply.java
samples/dnsguard/src/main/java/org/sdnhub/dnsguard/DnsRequest.java
samples/dnsguard/src/main/java/org/sdnhub/dnsguard/IDnsGuard.java
samples/dnsguard/src/main/java/org/sdnhub/dnsguard/internal/Activator.java
samples/dnsguard/src/main/java/org/sdnhub/dnsguard/northbound/AppNorthbound.java
samples/dnsguard/src/main/java/org/sdnhub/dnsguard/renders/D3pieData.java
samples/dnsguard/src/main/java/org/sdnhub/dnsguard/renders/DataTableObject.java
samples/dnsguard/src/main/java/org/sdnhub/dnsguard/renders/DnsRecordReply.java
samples/dnsguard/src/main/java/org/sdnhub/dnsguard/renders/DnsUsage.java
samples/dnsguard/src/main/java/org/sdnhub/dnsguard/renders/Violator.java
samples/dnsguard/src/main/java/org/sdnhub/dnsguard/web/AppWeb.java

index 8b521cf2b5137101fb9b1a6d1b2cb5102502c809..88e2ffad059101c79ec378e6b27d3e1b6adf058e 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * Copyright (c) 2014 SDN Hub.  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
+ *
+ * author: Luis Chiang
+ */
+
 # DNS Guard for securing the Enterprise DNS
 
 DNS in the unifying service that is used for multiple purposes,
index d053b7c853412cda6d97a7f71d1d465b9ed92fd4..22541985b8915e9da1b54162a4a09134f4aee4e4 100644 (file)
@@ -1,3 +1,14 @@
+/*
+ * Copyright (c) 2014 SDN Hub.  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
+ *
+ * author: Luis Chiang
+ */
+
+
 package org.sdnhub.dnsguard;
 
 import java.io.BufferedReader;
index ba12b8a54a985aa29f1694a5d80837b1803fee3e..75a7a55eaa2c7e4d5f1ba7fcce638d6de704579f 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * Copyright (c) 2014 SDN Hub.  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
+ *
+ * author: Luis Chiang
+ */
+
 package org.sdnhub.dnsguard;
 
 import java.sql.Connection;
index 73bd75d8690af5c8a0afa1bde058757edcf48bb2..acb4d9ba9c7c927c7a9dc9072c9c1ed675c7f19e 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * Copyright (c) 2014 SDN Hub.  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
+ *
+ * author: Luis Chiang
+ */
+
 package org.sdnhub.dnsguard;
 
 import java.util.ArrayList;
index 0189f2e33b430c3f8d5d3a08758992a6dc459ddd..2523b18ba0b2b03da7602f06c153e88c92d3c21f 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * Copyright (c) 2014 SDN Hub.  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
+ *
+ * author: Luis Chiang
+ */
+
 package org.sdnhub.dnsguard;
 
 public class DnsRequest {
index 24a61f0ca5f5ed8b14a125308527187925571967..2cc17773fcd9501922d0b7534f82b5554a4c94bb 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * Copyright (c) 2014 SDN Hub.  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
+ *
+ * author: Luis Chiang
+ */
+
 package org.sdnhub.dnsguard;
 
 import java.util.List;
index 137a8190616560d8a6aa3f9ca732c6cb404972eb..202907948ff26c64b7b46afa761c78b629172a23 100644 (file)
@@ -1,11 +1,14 @@
 /*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
+ * Copyright (c) 2014 SDN Hub.  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
+ *
+ * author: Luis Chiang
  */
 
+
 package org.sdnhub.dnsguard.internal;
 
 import java.util.Dictionary;
index 74c356278778ee070d826363bd15c2a4a7e45953..3fd9d803a7acaa7196cd257a346a040e93e88141 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (c) 2014 SDN Hub.  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
+ *
+ * author: Luis Chiang
+ */
 
 package org.sdnhub.dnsguard.northbound;
 
index d0b1fe049967487e117c0e75c37af390660e1548..bece7700a4e7c0fc13df9bd075bb3dcbb32bea23 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * Copyright (c) 2014 SDN Hub.  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
+ *
+ * author: Luis Chiang
+ */
+
 package org.sdnhub.dnsguard.renders;
 
 import java.util.List;
index c60aa726a9741ffd3a4f3168cda0859630691ce7..4452aff3a94c6232fd2f754cd0fb17a173712159 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * Copyright (c) 2014 SDN Hub.  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
+ *
+ * author: Luis Chiang
+ */
+
 package org.sdnhub.dnsguard.renders;
 
 import java.util.List;
index 36a26f7068ab16fc6288f17af57aed55caae8197..3e3db1555c918dd2552db6aef04418f486eede56 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * Copyright (c) 2014 SDN Hub.  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
+ *
+ * author: Luis Chiang
+ */
+
 package org.sdnhub.dnsguard.renders;
 
 public class DnsRecordReply {
index 4d98f2b4e2a7bee93851e642fa1d9289c876ea33..cb5e7cdef767256836345608e28d49bd1697d870 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * Copyright (c) 2014 SDN Hub.  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
+ *
+ * author: Luis Chiang
+ */
+
 package org.sdnhub.dnsguard.renders;
 
 public class DnsUsage {
index b948fb8c8839b350b4d96b725cced9036264bdd0..d66191db2397075775fbbbb184461ddf4fbf01d8 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * Copyright (c) 2014 SDN Hub.  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
+ *
+ * author: Luis Chiang
+ */
+
 package org.sdnhub.dnsguard.renders;
 
 public class Violator {
index a39db3f7934c08d1686b2624f13df0ffa2b0f770..5dd63f76a3b33a58b98f2623f434af89d7240391 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * Copyright (c) 2014 SDN Hub.  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
+ *
+ * author: Luis Chiang
+ */
+
 package org.sdnhub.dnsguard.web;
 
 import java.util.Properties;