Skip to content

Commit

Permalink
Merge pull request #17 from johnjstuart/main
Browse files Browse the repository at this point in the history
Update brand to BNY
  • Loading branch information
prathasirisha committed Jun 28, 2024
2 parents 7804ff8 + 5531006 commit 516dff4
Show file tree
Hide file tree
Showing 191 changed files with 615 additions and 644 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.MD
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Thank you for visiting BNY Mellon's GitHub.
Thank you for visiting BNY's GitHub.

We currently do not accept external code contributions.

We appreciate any potential issues or concerns reported by the community, and may elect to address them at our sole discretion.

Thank you for your interest!

BNY Mellon
BNY
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>

<!--
~ Copyright 2021 The Bank of New York Mellon.
~ Copyright 2024 The Bank of New York Mellon.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
Expand All @@ -21,7 +21,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>bnymellon.training.spring.boot</groupId>
<groupId>bny.training.spring.boot</groupId>
<artifactId>parent</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
Expand Down
4 changes: 2 additions & 2 deletions spring-boot-with-admin/admin/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2022 The Bank of New York Mellon.
~ Copyright 2024 The Bank of New York Mellon.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
Expand All @@ -19,7 +19,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>bnymellon.training.spring.boot</groupId>
<groupId>bny.training.spring.boot</groupId>
<artifactId>admin</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
* limitations under the License.
*/

package bnymellon.training.spring.boot.admin;
package bny.training.spring.boot.admin;

import bnymellon.training.spring.boot.admin.config.SecurityConfiguration;
import bny.training.spring.boot.admin.config.SecurityConfiguration;
import de.codecentric.boot.admin.server.config.EnableAdminServer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.training.spring.boot.admin.config;
package bny.training.spring.boot.admin.config;

import de.codecentric.boot.admin.server.config.AdminServerProperties;
import org.springframework.boot.autoconfigure.security.SecurityProperties;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.training.spring.boot.admin;
package bny.training.spring.boot.admin;

import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
Expand Down
4 changes: 2 additions & 2 deletions spring-boot-with-admin/notification/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2022 The Bank of New York Mellon.
~ Copyright 2024 The Bank of New York Mellon.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
Expand All @@ -19,7 +19,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>bnymellon.training.spring.boot</groupId>
<groupId>bny.training.spring.boot</groupId>
<artifactId>notification</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,12 +14,12 @@
* limitations under the License.
*/

package bnymellon.training.spring.boot.notification;
package bny.training.spring.boot.notification;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication(scanBasePackages = "bnymellon.training.spring.boot")
@SpringBootApplication(scanBasePackages = "bny.training.spring.boot")
public class NotificationApplication {

public static void main(String[] args) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,9 +14,9 @@
* limitations under the License.
*/

package bnymellon.training.spring.boot.notification.controller;
package bny.training.spring.boot.notification.controller;

import bnymellon.training.spring.boot.notification.model.Todo;
import bny.training.spring.boot.notification.model.Todo;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,10 +14,10 @@
* limitations under the License.
*/

package bnymellon.training.spring.boot.notification.controller;
package bny.training.spring.boot.notification.controller;

import bnymellon.training.spring.boot.notification.model.Todo;
import bnymellon.training.spring.boot.notification.service.NotificationService;
import bny.training.spring.boot.notification.model.Todo;
import bny.training.spring.boot.notification.service.NotificationService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.training.spring.boot.notification.model;
package bny.training.spring.boot.notification.model;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.training.spring.boot.notification.model.response;
package bny.training.spring.boot.notification.model.response;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.training.spring.boot.notification.model.response;
package bny.training.spring.boot.notification.model.response;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,9 +14,9 @@
* limitations under the License.
*/

package bnymellon.training.spring.boot.notification.model.response;
package bny.training.spring.boot.notification.model.response;

import bnymellon.training.spring.boot.notification.model.Todo;
import bny.training.spring.boot.notification.model.Todo;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.training.spring.boot.notification.model.response;
package bny.training.spring.boot.notification.model.response;

public interface TodoResponse {
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,9 +14,9 @@
* limitations under the License.
*/

package bnymellon.training.spring.boot.notification.service;
package bny.training.spring.boot.notification.service;

import bnymellon.training.spring.boot.notification.model.Todo;
import bny.training.spring.boot.notification.model.Todo;
import reactor.core.publisher.Flux;

import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,10 +14,10 @@
* limitations under the License.
*/

package bnymellon.training.spring.boot.notification.service;
package bny.training.spring.boot.notification.service;

import bnymellon.training.spring.boot.notification.model.Todo;
import bnymellon.training.spring.boot.notification.model.response.TodoCollectionResponse;
import bny.training.spring.boot.notification.model.response.TodoCollectionResponse;
import bny.training.spring.boot.notification.model.Todo;
import org.springframework.http.HttpStatus;
import org.springframework.stereotype.Service;
import org.springframework.web.reactive.function.client.WebClient;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,10 +14,10 @@
* limitations under the License.
*/

package bnymellon.training.spring.boot.notification.controller;
package bny.training.spring.boot.notification.controller;

import bnymellon.training.spring.boot.notification.model.Todo;
import bnymellon.training.spring.boot.notification.service.NotificationService;
import bny.training.spring.boot.notification.model.Todo;
import bny.training.spring.boot.notification.service.NotificationService;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,10 +14,10 @@
* limitations under the License.
*/

package bnymellon.training.spring.boot.notification.service;
package bny.training.spring.boot.notification.service;

import bnymellon.training.spring.boot.notification.model.Todo;
import bnymellon.training.spring.boot.notification.model.response.TodoCollectionResponse;
import bny.training.spring.boot.notification.model.response.TodoCollectionResponse;
import bny.training.spring.boot.notification.model.Todo;
import org.apache.http.client.ResponseHandler;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
Expand All @@ -27,7 +27,6 @@
import org.springframework.boot.test.mock.mockito.MockBean;
import org.springframework.http.HttpStatus;
import org.springframework.test.context.junit.jupiter.SpringExtension;
import org.springframework.web.reactive.function.client.ClientResponse;
import org.springframework.web.reactive.function.client.WebClient;
import org.springframework.web.server.ResponseStatusException;
import reactor.core.publisher.Flux;
Expand All @@ -36,7 +35,6 @@

import java.time.Duration;
import java.util.List;
import java.util.function.Function;

import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.when;
Expand Down
4 changes: 2 additions & 2 deletions spring-boot-with-admin/pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>

<!--
~ Copyright 2021 The Bank of New York Mellon.
~ Copyright 2024 The Bank of New York Mellon.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
Expand All @@ -21,7 +21,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>bnymellon.training.spring.boot</groupId>
<groupId>bny.training.spring.boot</groupId>
<artifactId>spring-boot-with-admin</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
Expand Down
4 changes: 2 additions & 2 deletions spring-boot-with-admin/registry/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2022 The Bank of New York Mellon.
~ Copyright 2024 The Bank of New York Mellon.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
Expand All @@ -19,7 +19,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>bnymellon.training.spring.boot</groupId>
<groupId>bny.training.spring.boot</groupId>
<artifactId>registry</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.training.spring.boot.registry;
package bny.training.spring.boot.registry;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
Expand Down
Loading

0 comments on commit 516dff4

Please sign in to comment.