From 870538d49f2dcc82f97eac7152081edfc2a33f1c Mon Sep 17 00:00:00 2001 From: Neil Frow <675806+worthydolt@users.noreply.github.com> Date: Wed, 27 Jul 2022 10:24:38 +0100 Subject: [PATCH] APID-520: copyright year update --- .../hmrc/apisubscriptionfields/config/ApplicationConfig.scala | 2 +- .../hmrc/apisubscriptionfields/connector/JsonFormatters.scala | 2 +- app/uk/gov/hmrc/apisubscriptionfields/connector/Model.scala | 2 +- .../connector/PushPullNotificationServiceConnector.scala | 2 +- .../controller/ApiFieldDefinitionsController.scala | 2 +- app/uk/gov/hmrc/apisubscriptionfields/controller/Binders.scala | 2 +- .../apisubscriptionfields/controller/CommonController.scala | 2 +- app/uk/gov/hmrc/apisubscriptionfields/controller/Requests.scala | 2 +- .../controller/SubscriptionFieldsController.scala | 2 +- .../hmrc/apisubscriptionfields/model/AccessRequirements.scala | 2 +- .../gov/hmrc/apisubscriptionfields/model/JsonFormatters.scala | 2 +- app/uk/gov/hmrc/apisubscriptionfields/model/Model.scala | 2 +- app/uk/gov/hmrc/apisubscriptionfields/model/Responses.scala | 2 +- app/uk/gov/hmrc/apisubscriptionfields/model/Shared.scala | 2 +- app/uk/gov/hmrc/apisubscriptionfields/model/Topics.scala | 2 +- app/uk/gov/hmrc/apisubscriptionfields/model/Types.scala | 2 +- .../repository/FieldDefinitionRepository.scala | 2 +- .../hmrc/apisubscriptionfields/repository/MongoCrudHelper.scala | 2 +- app/uk/gov/hmrc/apisubscriptionfields/repository/MongoDb.scala | 2 +- .../apisubscriptionfields/repository/MongoErrorHandler.scala | 2 +- .../apisubscriptionfields/repository/MongoIndexCreator.scala | 2 +- .../repository/SubscriptionFieldsRepository.scala | 2 +- .../service/ApiFieldDefinitionsService.scala | 2 +- .../service/PushPullNotificationService.scala | 2 +- .../service/SubscriptionFieldsService.scala | 2 +- .../hmrc/apisubscriptionfields/utils/ApplicationLogger.scala | 2 +- conf/application.conf | 2 +- test/uk/gov/hmrc/apisubscriptionfields/AsyncHmrcSpec.scala | 2 +- .../hmrc/apisubscriptionfields/FieldDefinitionTestData.scala | 2 +- .../hmrc/apisubscriptionfields/SubscriptionFieldsTestData.scala | 2 +- test/uk/gov/hmrc/apisubscriptionfields/TestData.scala | 2 +- .../connector/PushPullNotificationServiceConnectorSpec.scala | 2 +- .../controller/ApiFieldDefinitionsControllerDeleteSpec.scala | 2 +- .../controller/ApiFieldDefinitionsControllerGetSpec.scala | 2 +- .../controller/ApiFieldDefinitionsControllerPostSpec.scala | 2 +- .../controller/ApiFieldDefinitionsControllerPutSpec.scala | 2 +- .../controller/SubscriptionFieldsControllerGetSpec.scala | 2 +- .../controller/SubscriptionFieldsControllerPutSpec.scala | 2 +- .../apisubscriptionfields/model/AccessRequirementsSpec.scala | 2 +- .../hmrc/apisubscriptionfields/model/JsonFormatterSpec.scala | 2 +- test/uk/gov/hmrc/apisubscriptionfields/model/ModelSpec.scala | 2 +- .../apisubscriptionfields/model/ValidationRuleTestData.scala | 2 +- .../repository/ApiFieldDefinitionsRepositorySpec.scala | 2 +- .../repository/MongoErrorHandlerSpec.scala | 2 +- .../apisubscriptionfields/repository/MongoFormattersSpec.scala | 2 +- .../repository/SubscriptionFieldsRepositorySpec.scala | 2 +- .../service/ApiFieldDefinitionsServiceSpec.scala | 2 +- .../service/PushPullNotificationServiceSpec.scala | 2 +- .../service/SubscriptionFieldsServiceSpec.scala | 2 +- 49 files changed, 49 insertions(+), 49 deletions(-) diff --git a/app/uk/gov/hmrc/apisubscriptionfields/config/ApplicationConfig.scala b/app/uk/gov/hmrc/apisubscriptionfields/config/ApplicationConfig.scala index e319487..5d312e7 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/config/ApplicationConfig.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/config/ApplicationConfig.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/connector/JsonFormatters.scala b/app/uk/gov/hmrc/apisubscriptionfields/connector/JsonFormatters.scala index ef0b0c9..1292ca8 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/connector/JsonFormatters.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/connector/JsonFormatters.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/connector/Model.scala b/app/uk/gov/hmrc/apisubscriptionfields/connector/Model.scala index 36eeb40..64dc908 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/connector/Model.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/connector/Model.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/connector/PushPullNotificationServiceConnector.scala b/app/uk/gov/hmrc/apisubscriptionfields/connector/PushPullNotificationServiceConnector.scala index b9e20a2..641cbc6 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/connector/PushPullNotificationServiceConnector.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/connector/PushPullNotificationServiceConnector.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/controller/ApiFieldDefinitionsController.scala b/app/uk/gov/hmrc/apisubscriptionfields/controller/ApiFieldDefinitionsController.scala index 9810267..ff77dea 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/controller/ApiFieldDefinitionsController.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/controller/ApiFieldDefinitionsController.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/controller/Binders.scala b/app/uk/gov/hmrc/apisubscriptionfields/controller/Binders.scala index ddd6977..f3a6c60 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/controller/Binders.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/controller/Binders.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/controller/CommonController.scala b/app/uk/gov/hmrc/apisubscriptionfields/controller/CommonController.scala index 92a53cf..ab3d30e 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/controller/CommonController.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/controller/CommonController.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/controller/Requests.scala b/app/uk/gov/hmrc/apisubscriptionfields/controller/Requests.scala index 0a9d074..da27925 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/controller/Requests.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/controller/Requests.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/controller/SubscriptionFieldsController.scala b/app/uk/gov/hmrc/apisubscriptionfields/controller/SubscriptionFieldsController.scala index d68577c..8a864bc 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/controller/SubscriptionFieldsController.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/controller/SubscriptionFieldsController.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/model/AccessRequirements.scala b/app/uk/gov/hmrc/apisubscriptionfields/model/AccessRequirements.scala index 6387641..09243b3 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/model/AccessRequirements.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/model/AccessRequirements.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/model/JsonFormatters.scala b/app/uk/gov/hmrc/apisubscriptionfields/model/JsonFormatters.scala index 5300d33..22c772a 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/model/JsonFormatters.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/model/JsonFormatters.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/model/Model.scala b/app/uk/gov/hmrc/apisubscriptionfields/model/Model.scala index bc10794..9b29b22 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/model/Model.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/model/Model.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/model/Responses.scala b/app/uk/gov/hmrc/apisubscriptionfields/model/Responses.scala index 38eca33..82d6d85 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/model/Responses.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/model/Responses.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/model/Shared.scala b/app/uk/gov/hmrc/apisubscriptionfields/model/Shared.scala index 5d01bf3..350dd12 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/model/Shared.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/model/Shared.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/model/Topics.scala b/app/uk/gov/hmrc/apisubscriptionfields/model/Topics.scala index c8eb374..3e8bf48 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/model/Topics.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/model/Topics.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/model/Types.scala b/app/uk/gov/hmrc/apisubscriptionfields/model/Types.scala index af6a510..7cb3c53 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/model/Types.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/model/Types.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/repository/FieldDefinitionRepository.scala b/app/uk/gov/hmrc/apisubscriptionfields/repository/FieldDefinitionRepository.scala index c3638a9..60caf4a 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/repository/FieldDefinitionRepository.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/repository/FieldDefinitionRepository.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/repository/MongoCrudHelper.scala b/app/uk/gov/hmrc/apisubscriptionfields/repository/MongoCrudHelper.scala index b001390..e63c718 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/repository/MongoCrudHelper.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/repository/MongoCrudHelper.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/repository/MongoDb.scala b/app/uk/gov/hmrc/apisubscriptionfields/repository/MongoDb.scala index e13236a..f04a305 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/repository/MongoDb.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/repository/MongoDb.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/repository/MongoErrorHandler.scala b/app/uk/gov/hmrc/apisubscriptionfields/repository/MongoErrorHandler.scala index c7b3d67..25ad247 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/repository/MongoErrorHandler.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/repository/MongoErrorHandler.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/repository/MongoIndexCreator.scala b/app/uk/gov/hmrc/apisubscriptionfields/repository/MongoIndexCreator.scala index 657fc71..9d37efd 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/repository/MongoIndexCreator.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/repository/MongoIndexCreator.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/repository/SubscriptionFieldsRepository.scala b/app/uk/gov/hmrc/apisubscriptionfields/repository/SubscriptionFieldsRepository.scala index 76788d8..b09f6f4 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/repository/SubscriptionFieldsRepository.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/repository/SubscriptionFieldsRepository.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/service/ApiFieldDefinitionsService.scala b/app/uk/gov/hmrc/apisubscriptionfields/service/ApiFieldDefinitionsService.scala index e605559..0fafcd4 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/service/ApiFieldDefinitionsService.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/service/ApiFieldDefinitionsService.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/service/PushPullNotificationService.scala b/app/uk/gov/hmrc/apisubscriptionfields/service/PushPullNotificationService.scala index 5c471fc..203a08f 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/service/PushPullNotificationService.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/service/PushPullNotificationService.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/service/SubscriptionFieldsService.scala b/app/uk/gov/hmrc/apisubscriptionfields/service/SubscriptionFieldsService.scala index ea026cc..21a8649 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/service/SubscriptionFieldsService.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/service/SubscriptionFieldsService.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/app/uk/gov/hmrc/apisubscriptionfields/utils/ApplicationLogger.scala b/app/uk/gov/hmrc/apisubscriptionfields/utils/ApplicationLogger.scala index c651a93..2009bad 100644 --- a/app/uk/gov/hmrc/apisubscriptionfields/utils/ApplicationLogger.scala +++ b/app/uk/gov/hmrc/apisubscriptionfields/utils/ApplicationLogger.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/conf/application.conf b/conf/application.conf index 683f4e1..e0a37fe 100644 --- a/conf/application.conf +++ b/conf/application.conf @@ -1,4 +1,4 @@ -# Copyright 2021 HM Revenue & Customs +# Copyright 2022 HM Revenue & Customs # # 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/test/uk/gov/hmrc/apisubscriptionfields/AsyncHmrcSpec.scala b/test/uk/gov/hmrc/apisubscriptionfields/AsyncHmrcSpec.scala index 9cf858e..d20fc5a 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/AsyncHmrcSpec.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/AsyncHmrcSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/test/uk/gov/hmrc/apisubscriptionfields/FieldDefinitionTestData.scala b/test/uk/gov/hmrc/apisubscriptionfields/FieldDefinitionTestData.scala index af75de7..00d10e4 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/FieldDefinitionTestData.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/FieldDefinitionTestData.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/test/uk/gov/hmrc/apisubscriptionfields/SubscriptionFieldsTestData.scala b/test/uk/gov/hmrc/apisubscriptionfields/SubscriptionFieldsTestData.scala index d617362..32d1dc3 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/SubscriptionFieldsTestData.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/SubscriptionFieldsTestData.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/test/uk/gov/hmrc/apisubscriptionfields/TestData.scala b/test/uk/gov/hmrc/apisubscriptionfields/TestData.scala index 791877d..f3a7a04 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/TestData.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/TestData.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/test/uk/gov/hmrc/apisubscriptionfields/connector/PushPullNotificationServiceConnectorSpec.scala b/test/uk/gov/hmrc/apisubscriptionfields/connector/PushPullNotificationServiceConnectorSpec.scala index 22b2ddf..c5bbdf9 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/connector/PushPullNotificationServiceConnectorSpec.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/connector/PushPullNotificationServiceConnectorSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/test/uk/gov/hmrc/apisubscriptionfields/controller/ApiFieldDefinitionsControllerDeleteSpec.scala b/test/uk/gov/hmrc/apisubscriptionfields/controller/ApiFieldDefinitionsControllerDeleteSpec.scala index fcbbe17..ac65d7f 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/controller/ApiFieldDefinitionsControllerDeleteSpec.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/controller/ApiFieldDefinitionsControllerDeleteSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/test/uk/gov/hmrc/apisubscriptionfields/controller/ApiFieldDefinitionsControllerGetSpec.scala b/test/uk/gov/hmrc/apisubscriptionfields/controller/ApiFieldDefinitionsControllerGetSpec.scala index cb7b560..854b5e5 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/controller/ApiFieldDefinitionsControllerGetSpec.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/controller/ApiFieldDefinitionsControllerGetSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/test/uk/gov/hmrc/apisubscriptionfields/controller/ApiFieldDefinitionsControllerPostSpec.scala b/test/uk/gov/hmrc/apisubscriptionfields/controller/ApiFieldDefinitionsControllerPostSpec.scala index fe6a06a..79a9a59 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/controller/ApiFieldDefinitionsControllerPostSpec.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/controller/ApiFieldDefinitionsControllerPostSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/test/uk/gov/hmrc/apisubscriptionfields/controller/ApiFieldDefinitionsControllerPutSpec.scala b/test/uk/gov/hmrc/apisubscriptionfields/controller/ApiFieldDefinitionsControllerPutSpec.scala index ffde555..af905e2 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/controller/ApiFieldDefinitionsControllerPutSpec.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/controller/ApiFieldDefinitionsControllerPutSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/test/uk/gov/hmrc/apisubscriptionfields/controller/SubscriptionFieldsControllerGetSpec.scala b/test/uk/gov/hmrc/apisubscriptionfields/controller/SubscriptionFieldsControllerGetSpec.scala index b4d33db..7b8299e 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/controller/SubscriptionFieldsControllerGetSpec.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/controller/SubscriptionFieldsControllerGetSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/test/uk/gov/hmrc/apisubscriptionfields/controller/SubscriptionFieldsControllerPutSpec.scala b/test/uk/gov/hmrc/apisubscriptionfields/controller/SubscriptionFieldsControllerPutSpec.scala index 2adcf80..d7e4f2e 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/controller/SubscriptionFieldsControllerPutSpec.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/controller/SubscriptionFieldsControllerPutSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/test/uk/gov/hmrc/apisubscriptionfields/model/AccessRequirementsSpec.scala b/test/uk/gov/hmrc/apisubscriptionfields/model/AccessRequirementsSpec.scala index 6bb3606..040e34b 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/model/AccessRequirementsSpec.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/model/AccessRequirementsSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/test/uk/gov/hmrc/apisubscriptionfields/model/JsonFormatterSpec.scala b/test/uk/gov/hmrc/apisubscriptionfields/model/JsonFormatterSpec.scala index f29943a..67a3e00 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/model/JsonFormatterSpec.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/model/JsonFormatterSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/test/uk/gov/hmrc/apisubscriptionfields/model/ModelSpec.scala b/test/uk/gov/hmrc/apisubscriptionfields/model/ModelSpec.scala index bcd5e99..7d1eeec 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/model/ModelSpec.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/model/ModelSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/test/uk/gov/hmrc/apisubscriptionfields/model/ValidationRuleTestData.scala b/test/uk/gov/hmrc/apisubscriptionfields/model/ValidationRuleTestData.scala index a248626..91f755b 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/model/ValidationRuleTestData.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/model/ValidationRuleTestData.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/test/uk/gov/hmrc/apisubscriptionfields/repository/ApiFieldDefinitionsRepositorySpec.scala b/test/uk/gov/hmrc/apisubscriptionfields/repository/ApiFieldDefinitionsRepositorySpec.scala index 6b093f7..92b4a68 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/repository/ApiFieldDefinitionsRepositorySpec.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/repository/ApiFieldDefinitionsRepositorySpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/test/uk/gov/hmrc/apisubscriptionfields/repository/MongoErrorHandlerSpec.scala b/test/uk/gov/hmrc/apisubscriptionfields/repository/MongoErrorHandlerSpec.scala index 93315ad..49d966c 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/repository/MongoErrorHandlerSpec.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/repository/MongoErrorHandlerSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/test/uk/gov/hmrc/apisubscriptionfields/repository/MongoFormattersSpec.scala b/test/uk/gov/hmrc/apisubscriptionfields/repository/MongoFormattersSpec.scala index 74ae758..486ea44 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/repository/MongoFormattersSpec.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/repository/MongoFormattersSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/test/uk/gov/hmrc/apisubscriptionfields/repository/SubscriptionFieldsRepositorySpec.scala b/test/uk/gov/hmrc/apisubscriptionfields/repository/SubscriptionFieldsRepositorySpec.scala index 03c6301..f730484 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/repository/SubscriptionFieldsRepositorySpec.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/repository/SubscriptionFieldsRepositorySpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/test/uk/gov/hmrc/apisubscriptionfields/service/ApiFieldDefinitionsServiceSpec.scala b/test/uk/gov/hmrc/apisubscriptionfields/service/ApiFieldDefinitionsServiceSpec.scala index 1f788af..c83df7a 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/service/ApiFieldDefinitionsServiceSpec.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/service/ApiFieldDefinitionsServiceSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/test/uk/gov/hmrc/apisubscriptionfields/service/PushPullNotificationServiceSpec.scala b/test/uk/gov/hmrc/apisubscriptionfields/service/PushPullNotificationServiceSpec.scala index b7567ce..61f77f1 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/service/PushPullNotificationServiceSpec.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/service/PushPullNotificationServiceSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * 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/test/uk/gov/hmrc/apisubscriptionfields/service/SubscriptionFieldsServiceSpec.scala b/test/uk/gov/hmrc/apisubscriptionfields/service/SubscriptionFieldsServiceSpec.scala index ec96c43..01288aa 100644 --- a/test/uk/gov/hmrc/apisubscriptionfields/service/SubscriptionFieldsServiceSpec.scala +++ b/test/uk/gov/hmrc/apisubscriptionfields/service/SubscriptionFieldsServiceSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2021 HM Revenue & Customs + * Copyright 2022 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.