diff options
author | Stanislav Marszalek <s.marszalek2@partner.samsung.com> | 2021-08-26 08:05:14 +0200 |
---|---|---|
committer | Stanislav Marszalek <s.marszalek2@partner.samsung.com> | 2021-08-26 08:05:14 +0200 |
commit | d03ceeba06322d59112981bd5b8ab233f6fe04fd (patch) | |
tree | 8df163ffbd689b72d4050d976f4c0772a66d5c33 | |
parent | 1824fca74c48836cfd073f7a12eb169e4f65ac3f (diff) |
Adding copyright to Datacollector RAPP new files
Issue-ID: INT-1962
Signed-off-by: Stanislav Marszalek <s.marszalek2@partner.samsung.com>
Change-Id: I02d3684c98d563d7f386de2fdf032e930ac46b1f
7 files changed, 91 insertions, 0 deletions
diff --git a/datacollector/src/main/java/org/onap/rapp/datacollector/entity/fileready/FileReadyEvent.java b/datacollector/src/main/java/org/onap/rapp/datacollector/entity/fileready/FileReadyEvent.java index 104047f..703b2ea 100644 --- a/datacollector/src/main/java/org/onap/rapp/datacollector/entity/fileready/FileReadyEvent.java +++ b/datacollector/src/main/java/org/onap/rapp/datacollector/entity/fileready/FileReadyEvent.java @@ -1,3 +1,16 @@ +/* + * Copyright (C) 2021 Samsung Electronics + * 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 + */ + package org.onap.rapp.datacollector.entity.fileready; import org.onap.rapp.datacollector.entity.ves.CommonEventHeader; diff --git a/datacollector/src/main/java/org/onap/rapp/datacollector/entity/fileready/MeasDataCollection.java b/datacollector/src/main/java/org/onap/rapp/datacollector/entity/fileready/MeasDataCollection.java index 53a9e74..be634f3 100644 --- a/datacollector/src/main/java/org/onap/rapp/datacollector/entity/fileready/MeasDataCollection.java +++ b/datacollector/src/main/java/org/onap/rapp/datacollector/entity/fileready/MeasDataCollection.java @@ -1,3 +1,16 @@ +/* + * Copyright (C) 2021 Samsung Electronics + * 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 + */ + package org.onap.rapp.datacollector.entity.fileready; import java.util.List; diff --git a/datacollector/src/main/java/org/onap/rapp/datacollector/service/ParserFactory.java b/datacollector/src/main/java/org/onap/rapp/datacollector/service/ParserFactory.java index 77b3877..553cc55 100644 --- a/datacollector/src/main/java/org/onap/rapp/datacollector/service/ParserFactory.java +++ b/datacollector/src/main/java/org/onap/rapp/datacollector/service/ParserFactory.java @@ -1,3 +1,16 @@ +/* + * Copyright (C) 2021 Samsung Electronics + * 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 + */ + package org.onap.rapp.datacollector.service; import java.util.List; diff --git a/datacollector/src/test/java/org/onap/rapp/datacollector/TestHelpers.java b/datacollector/src/test/java/org/onap/rapp/datacollector/TestHelpers.java index bd13330..6e3cda1 100644 --- a/datacollector/src/test/java/org/onap/rapp/datacollector/TestHelpers.java +++ b/datacollector/src/test/java/org/onap/rapp/datacollector/TestHelpers.java @@ -1,3 +1,16 @@ +/* + * Copyright (C) 2021 Samsung Electronics + * 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 + */ + package org.onap.rapp.datacollector; import static java.util.Objects.nonNull; diff --git a/datacollector/src/test/java/org/onap/rapp/datacollector/service/FileReadyParserImplTest.java b/datacollector/src/test/java/org/onap/rapp/datacollector/service/FileReadyParserImplTest.java index e5c9837..76b560d 100644 --- a/datacollector/src/test/java/org/onap/rapp/datacollector/service/FileReadyParserImplTest.java +++ b/datacollector/src/test/java/org/onap/rapp/datacollector/service/FileReadyParserImplTest.java @@ -1,3 +1,16 @@ +/* + * Copyright (C) 2021 Samsung Electronics + * 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 + */ + package org.onap.rapp.datacollector.service; import static org.junit.Assert.assertEquals; diff --git a/datacollector/src/test/java/org/onap/rapp/datacollector/service/PMServiceTest.java b/datacollector/src/test/java/org/onap/rapp/datacollector/service/PMServiceTest.java index 38d93bc..b8c5e21 100644 --- a/datacollector/src/test/java/org/onap/rapp/datacollector/service/PMServiceTest.java +++ b/datacollector/src/test/java/org/onap/rapp/datacollector/service/PMServiceTest.java @@ -1,3 +1,16 @@ +/* + * Copyright (C) 2021 Samsung Electronics + * 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 + */ + package org.onap.rapp.datacollector.service; import static java.util.Arrays.asList; diff --git a/datacollector/src/test/java/org/onap/rapp/datacollector/service/ParserFactoryTest.java b/datacollector/src/test/java/org/onap/rapp/datacollector/service/ParserFactoryTest.java index 61a88ee..b6bbad4 100644 --- a/datacollector/src/test/java/org/onap/rapp/datacollector/service/ParserFactoryTest.java +++ b/datacollector/src/test/java/org/onap/rapp/datacollector/service/ParserFactoryTest.java @@ -1,3 +1,16 @@ +/* + * Copyright (C) 2021 Samsung Electronics + * 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 + */ + package org.onap.rapp.datacollector.service; import static org.assertj.core.api.Assertions.assertThatExceptionOfType; |