From 551ce9bf532eadcfe7f65327606aca4adf8d4b38 Mon Sep 17 00:00:00 2001 From: Zachary Sabourin Date: Fri, 26 Aug 2022 15:48:54 -0400 Subject: [PATCH] feat: Update copyright headers on all java files --- .../mailing/api/AccountsAPI.java | 20 ++++++++++--------- .../config/DefaultPhysicalNamingStrategy.java | 11 ++++++++++ .../mailing/dto/MailingListSubscriptions.java | 11 ++++++++++ .../mailing/dto/MailingLists.java | 11 ++++++++++ .../MailingListUrlParamterNames.java | 11 ++++++++++ .../resources/MailingListsResource.java | 11 ++++++++++ .../resources/MailingListsResourceTests.java | 11 ++++++++++ .../test/namespace/SchemaNamespaceHelper.java | 11 ++++++++++ 8 files changed, 88 insertions(+), 9 deletions(-) diff --git a/src/main/java/org/eclipsefoundation/mailing/api/AccountsAPI.java b/src/main/java/org/eclipsefoundation/mailing/api/AccountsAPI.java index abda9f1..19b2c50 100644 --- a/src/main/java/org/eclipsefoundation/mailing/api/AccountsAPI.java +++ b/src/main/java/org/eclipsefoundation/mailing/api/AccountsAPI.java @@ -1,12 +1,14 @@ -/******************************************************************************* - * Copyright (C) 2020 Eclipse Foundation - * - * This program and the accompanying materials are made - * available under the terms of the Eclipse Public License 2.0 - * which is available at https://www.eclipse.org/legal/epl-2.0/ - * - * SPDX-License-Identifier: EPL-2.0 - ******************************************************************************/ +/********************************************************************* +* Copyright (c) 2020 Eclipse Foundation. +* +* This program and the accompanying materials are made +* available under the terms of the Eclipse Public License 2.0 +* which is available at https://www.eclipse.org/legal/epl-2.0/ +* +* Author: Martin Lowe +* +* SPDX-License-Identifier: EPL-2.0 +**********************************************************************/ package org.eclipsefoundation.mailing.api; import javax.ws.rs.GET; diff --git a/src/main/java/org/eclipsefoundation/mailing/config/DefaultPhysicalNamingStrategy.java b/src/main/java/org/eclipsefoundation/mailing/config/DefaultPhysicalNamingStrategy.java index 5d7b9ca..c925878 100644 --- a/src/main/java/org/eclipsefoundation/mailing/config/DefaultPhysicalNamingStrategy.java +++ b/src/main/java/org/eclipsefoundation/mailing/config/DefaultPhysicalNamingStrategy.java @@ -1,3 +1,14 @@ +/********************************************************************* +* Copyright (c) 2022 Eclipse Foundation. +* +* This program and the accompanying materials are made +* available under the terms of the Eclipse Public License 2.0 +* which is available at https://www.eclipse.org/legal/epl-2.0/ +* +* Author: Martin Lowe +* +* SPDX-License-Identifier: EPL-2.0 +**********************************************************************/ package org.eclipsefoundation.mailing.config; import org.hibernate.boot.model.naming.Identifier; diff --git a/src/main/java/org/eclipsefoundation/mailing/dto/MailingListSubscriptions.java b/src/main/java/org/eclipsefoundation/mailing/dto/MailingListSubscriptions.java index 9ad9a95..cdc63eb 100644 --- a/src/main/java/org/eclipsefoundation/mailing/dto/MailingListSubscriptions.java +++ b/src/main/java/org/eclipsefoundation/mailing/dto/MailingListSubscriptions.java @@ -1,3 +1,14 @@ +/********************************************************************* +* Copyright (c) 2022 Eclipse Foundation. +* +* This program and the accompanying materials are made +* available under the terms of the Eclipse Public License 2.0 +* which is available at https://www.eclipse.org/legal/epl-2.0/ +* +* Author: Martin Lowe +* +* SPDX-License-Identifier: EPL-2.0 +**********************************************************************/ package org.eclipsefoundation.mailing.dto; import java.util.Date; diff --git a/src/main/java/org/eclipsefoundation/mailing/dto/MailingLists.java b/src/main/java/org/eclipsefoundation/mailing/dto/MailingLists.java index 9d1d0c2..e4e0594 100644 --- a/src/main/java/org/eclipsefoundation/mailing/dto/MailingLists.java +++ b/src/main/java/org/eclipsefoundation/mailing/dto/MailingLists.java @@ -1,3 +1,14 @@ +/********************************************************************* +* Copyright (c) 2022 Eclipse Foundation. +* +* This program and the accompanying materials are made +* available under the terms of the Eclipse Public License 2.0 +* which is available at https://www.eclipse.org/legal/epl-2.0/ +* +* Author: Martin Lowe +* +* SPDX-License-Identifier: EPL-2.0 +**********************************************************************/ package org.eclipsefoundation.mailing.dto; import java.util.Date; diff --git a/src/main/java/org/eclipsefoundation/mailing/namespace/MailingListUrlParamterNames.java b/src/main/java/org/eclipsefoundation/mailing/namespace/MailingListUrlParamterNames.java index cf63d5e..8d14666 100644 --- a/src/main/java/org/eclipsefoundation/mailing/namespace/MailingListUrlParamterNames.java +++ b/src/main/java/org/eclipsefoundation/mailing/namespace/MailingListUrlParamterNames.java @@ -1,3 +1,14 @@ +/********************************************************************* +* Copyright (c) 2022 Eclipse Foundation. +* +* This program and the accompanying materials are made +* available under the terms of the Eclipse Public License 2.0 +* which is available at https://www.eclipse.org/legal/epl-2.0/ +* +* Author: Martin Lowe +* +* SPDX-License-Identifier: EPL-2.0 +**********************************************************************/ package org.eclipsefoundation.mailing.namespace; import java.util.ArrayList; diff --git a/src/main/java/org/eclipsefoundation/mailing/resources/MailingListsResource.java b/src/main/java/org/eclipsefoundation/mailing/resources/MailingListsResource.java index 3271e29..16b6641 100644 --- a/src/main/java/org/eclipsefoundation/mailing/resources/MailingListsResource.java +++ b/src/main/java/org/eclipsefoundation/mailing/resources/MailingListsResource.java @@ -1,3 +1,14 @@ +/********************************************************************* +* Copyright (c) 2022 Eclipse Foundation. +* +* This program and the accompanying materials are made +* available under the terms of the Eclipse Public License 2.0 +* which is available at https://www.eclipse.org/legal/epl-2.0/ +* +* Author: Martin Lowe +* +* SPDX-License-Identifier: EPL-2.0 +**********************************************************************/ package org.eclipsefoundation.mailing.resources; import java.util.Collections; diff --git a/src/test/java/org/eclipsefoundation/mailing/resources/MailingListsResourceTests.java b/src/test/java/org/eclipsefoundation/mailing/resources/MailingListsResourceTests.java index 479e9a0..f14ef4a 100644 --- a/src/test/java/org/eclipsefoundation/mailing/resources/MailingListsResourceTests.java +++ b/src/test/java/org/eclipsefoundation/mailing/resources/MailingListsResourceTests.java @@ -1,3 +1,14 @@ +/********************************************************************* +* Copyright (c) 2022 Eclipse Foundation. +* +* This program and the accompanying materials are made +* available under the terms of the Eclipse Public License 2.0 +* which is available at https://www.eclipse.org/legal/epl-2.0/ +* +* Author: Martin Lowe +* +* SPDX-License-Identifier: EPL-2.0 +**********************************************************************/ package org.eclipsefoundation.mailing.resources; import static io.restassured.RestAssured.given; diff --git a/src/test/java/org/eclipsefoundation/mailing/test/namespace/SchemaNamespaceHelper.java b/src/test/java/org/eclipsefoundation/mailing/test/namespace/SchemaNamespaceHelper.java index 3c9296d..baf6bc4 100644 --- a/src/test/java/org/eclipsefoundation/mailing/test/namespace/SchemaNamespaceHelper.java +++ b/src/test/java/org/eclipsefoundation/mailing/test/namespace/SchemaNamespaceHelper.java @@ -1,3 +1,14 @@ +/********************************************************************* +* Copyright (c) 2022 Eclipse Foundation. +* +* This program and the accompanying materials are made +* available under the terms of the Eclipse Public License 2.0 +* which is available at https://www.eclipse.org/legal/epl-2.0/ +* +* Author: Martin Lowe +* +* SPDX-License-Identifier: EPL-2.0 +**********************************************************************/ package org.eclipsefoundation.mailing.test.namespace; public final class SchemaNamespaceHelper { -- GitLab