aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLusheng Ji <lji@research.att.com>2018-02-12 11:03:36 -0500
committerLusheng Ji <lji@research.att.com>2018-02-12 11:03:36 -0500
commita6f91efda578965710630154b173cf1ee9b64727 (patch)
tree953d7b6a9377c0a611e308a2a59d7e72a8c6f73b
parentba9a312ec831588c579ef08d8bc1783a0569df75 (diff)
Update license text
Change-Id: Ia720d87a661c297d3613e12db19e91ae3b7c0a5f Signed-off-by: Lusheng Ji <lji@research.att.com> Issue-ID: DCAEGEN2-325
-rw-r--r--etc/dcae_snmptrapd.yaml17
-rw-r--r--etc/dcae_snmptrapd_logging.yaml17
-rw-r--r--etc/trapd.yaml17
-rw-r--r--etc/trapd_logging.yaml17
-rwxr-xr-xmvn-phase-script.sh2
-rw-r--r--pom.xml2
-rw-r--r--setup.py2
-rw-r--r--src/dcae_snmptrapd.py2
-rwxr-xr-xsrc/dcae_snmptrapd.sh2
-rw-r--r--src/mod/trapd_dmaap_config.py2
-rw-r--r--src/mod/trapd_exit.py2
-rw-r--r--src/mod/trapd_http_session.py2
-rw-r--r--src/mod/trapd_perm_status.py2
-rw-r--r--src/mod/trapd_runtime_pid.py2
-rw-r--r--src/mod/trapd_trap_config.py2
-rw-r--r--src/mod/trapd_yaml_config.py2
16 files changed, 80 insertions, 12 deletions
diff --git a/etc/dcae_snmptrapd.yaml b/etc/dcae_snmptrapd.yaml
index c3c7f06..0b4feb7 100644
--- a/etc/dcae_snmptrapd.yaml
+++ b/etc/dcae_snmptrapd.yaml
@@ -1,3 +1,20 @@
+# ================================================================================
+# Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
+# ================================================================================
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ============LICENSE_END=========================================================
+#
+# ECOMP is a trademark and service mark of AT&T Intellectual Property.
protocol:
transport: udp
interface: localhost
diff --git a/etc/dcae_snmptrapd_logging.yaml b/etc/dcae_snmptrapd_logging.yaml
index 586e3cb..43af342 100644
--- a/etc/dcae_snmptrapd_logging.yaml
+++ b/etc/dcae_snmptrapd_logging.yaml
@@ -1,3 +1,20 @@
+# ================================================================================
+# Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
+# ================================================================================
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ============LICENSE_END=========================================================
+#
+# ECOMP is a trademark and service mark of AT&T Intellectual Property.
version: 1
disable_existing_loggers: False
formatters:
diff --git a/etc/trapd.yaml b/etc/trapd.yaml
index 06e1323..7432e56 100644
--- a/etc/trapd.yaml
+++ b/etc/trapd.yaml
@@ -1,3 +1,20 @@
+# ================================================================================
+# Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
+# ================================================================================
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ============LICENSE_END=========================================================
+#
+# ECOMP is a trademark and service mark of AT&T Intellectual Property.
snmptrap: '2.0'
info:
version: 2.1
diff --git a/etc/trapd_logging.yaml b/etc/trapd_logging.yaml
index 586e3cb..6719e5e 100644
--- a/etc/trapd_logging.yaml
+++ b/etc/trapd_logging.yaml
@@ -1,3 +1,20 @@
+# ================================================================================
+# Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
+# ================================================================================
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ============LICENSE_END=========================================================
+#
+# ECOMP is a trademark and service mark of AT&T Intellectual Property.
version: 1
disable_existing_loggers: False
formatters:
diff --git a/mvn-phase-script.sh b/mvn-phase-script.sh
index edfbed0..eceab57 100755
--- a/mvn-phase-script.sh
+++ b/mvn-phase-script.sh
@@ -1,7 +1,7 @@
#!/bin/bash
# ================================================================================
-# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/pom.xml b/pom.xml
index 5f3acab..1a61b2a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<!--
================================================================================
-Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
================================================================================
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/setup.py b/setup.py
index 6b40be5..660629b 100644
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
# org.onap.dcae
# ================================================================================
-# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/src/dcae_snmptrapd.py b/src/dcae_snmptrapd.py
index ee69fec..77043d8 100644
--- a/src/dcae_snmptrapd.py
+++ b/src/dcae_snmptrapd.py
@@ -1,7 +1,7 @@
# ============LICENSE_START=======================================================)
# org.onap.dcae
# ================================================================================
-# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/src/dcae_snmptrapd.sh b/src/dcae_snmptrapd.sh
index c829866..37ca96f 100755
--- a/src/dcae_snmptrapd.sh
+++ b/src/dcae_snmptrapd.sh
@@ -3,7 +3,7 @@
# ============LICENSE_START=======================================================
# org.onap.dcae
# ================================================================================
-# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/src/mod/trapd_dmaap_config.py b/src/mod/trapd_dmaap_config.py
index c764e52..6e83821 100644
--- a/src/mod/trapd_dmaap_config.py
+++ b/src/mod/trapd_dmaap_config.py
@@ -1,7 +1,7 @@
# ============LICENSE_START=======================================================
# org.onap.dcae
# ================================================================================
-# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/src/mod/trapd_exit.py b/src/mod/trapd_exit.py
index d14ea81..e3e9364 100644
--- a/src/mod/trapd_exit.py
+++ b/src/mod/trapd_exit.py
@@ -1,7 +1,7 @@
# ============LICENSE_START=======================================================
# org.onap.dcae
# ================================================================================
-# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/src/mod/trapd_http_session.py b/src/mod/trapd_http_session.py
index 82c74b2..f087423 100644
--- a/src/mod/trapd_http_session.py
+++ b/src/mod/trapd_http_session.py
@@ -1,7 +1,7 @@
# ============LICENSE_START=======================================================
# org.onap.dcae
# ================================================================================
-# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/src/mod/trapd_perm_status.py b/src/mod/trapd_perm_status.py
index 5bf2180..43ad1df 100644
--- a/src/mod/trapd_perm_status.py
+++ b/src/mod/trapd_perm_status.py
@@ -1,7 +1,7 @@
# ============LICENSE_START=======================================================
# org.onap.dcae
# ================================================================================
-# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/src/mod/trapd_runtime_pid.py b/src/mod/trapd_runtime_pid.py
index bddc63c..96594e6 100644
--- a/src/mod/trapd_runtime_pid.py
+++ b/src/mod/trapd_runtime_pid.py
@@ -1,7 +1,7 @@
# ============LICENSE_START=======================================================
# org.onap.dcae
# ================================================================================
-# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/src/mod/trapd_trap_config.py b/src/mod/trapd_trap_config.py
index bfcbb41..4b1e2e4 100644
--- a/src/mod/trapd_trap_config.py
+++ b/src/mod/trapd_trap_config.py
@@ -1,7 +1,7 @@
# ============LICENSE_START=======================================================
# org.onap.dcae
# ================================================================================
-# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/src/mod/trapd_yaml_config.py b/src/mod/trapd_yaml_config.py
index 0041232..f0d12e3 100644
--- a/src/mod/trapd_yaml_config.py
+++ b/src/mod/trapd_yaml_config.py
@@ -1,7 +1,7 @@
# ============LICENSE_START=======================================================
# org.onap.dcae
# ================================================================================
-# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.