diff --git a/src/main/java/org/eclipsefoundation/mailing/api/AccountsAPI.java b/src/main/java/org/eclipsefoundation/mailing/api/AccountsAPI.java index abda9f19681d6b37ea885684dc8ffad91adfc819..19b2c509836c71cc0926b6cbe7fb56ad41823874 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 5d7b9caddb324953a2c45f7a2677109f884d9bb4..c9258781110a214803465ee9bb2f903119dab034 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 9ad9a954a73fa5f43bb0c32278bbb6e3b4e62a9b..cdc63eb3e0a1381c4f955b5afeaaf28c50a1c7ad 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 9d1d0c2b6850d35e44833e7d53a08a79f2bf3547..e4e05942ee677af6b4286b7c34c81bbe0a4f1762 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 cf63d5e6b633378e976fd5e454967f3e9ba5ada1..8d14666f5b60e1296e63ba3f1670c86b17317792 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 3271e2950f2e3cff0f927e9b50f0b82b0edad1f3..16b66411e16ce9859a21213af103ec6b0b513431 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 479e9a0ad78839409f53fe196e1242f4d9b8cad7..f14ef4aba440994559d842464ac906b98109fc77 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 3c9296d5089ab981db00f80a9c8196fcf11325cf..baf6bc4de141ef4a1654ee579c75e9ef865f0bc6 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 {