Renaming ListenerEndpointRegistry

ListenerEndpointRegistry -> GenericListenerEndpointRegistry
This commit is contained in:
Soby Chacko
2023-01-27 17:56:21 -05:00
parent 7f724bb3e0
commit 82e055a4bc
4 changed files with 13 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2022 the original author or authors.
* Copyright 2022-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -16,7 +16,7 @@
package org.springframework.pulsar.reactive.config;
import org.springframework.pulsar.config.ListenerEndpointRegistry;
import org.springframework.pulsar.config.GenericListenerEndpointRegistry;
import org.springframework.pulsar.reactive.listener.ReactivePulsarMessageListenerContainer;
/**
@@ -36,8 +36,8 @@ import org.springframework.pulsar.reactive.listener.ReactivePulsarMessageListene
* @param <T> Message payload type.
* @author Christophe Bornet
*/
public class ReactivePulsarListenerEndpointRegistry<T>
extends ListenerEndpointRegistry<ReactivePulsarMessageListenerContainer<T>, ReactivePulsarListenerEndpoint<T>> {
public class ReactivePulsarListenerEndpointRegistry<T> extends
GenericListenerEndpointRegistry<ReactivePulsarMessageListenerContainer<T>, ReactivePulsarListenerEndpoint<T>> {
public ReactivePulsarListenerEndpointRegistry() {
super(ReactivePulsarMessageListenerContainer.class);