Polishing

This commit is contained in:
Juergen Hoeller
2018-08-16 12:21:49 +02:00
parent 6b3dd0779f
commit f532de5a8a
10 changed files with 87 additions and 85 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2018 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.
@@ -103,8 +103,8 @@ public class JmsListenerEndpointRegistry implements DisposableBean, SmartLifecyc
/**
* Return the ids of the managed {@link MessageListenerContainer} instance(s).
* @see #getListenerContainer(String)
* @since 4.2.3
* @see #getListenerContainer(String)
*/
public Set<String> getListenerContainerIds() {
return Collections.unmodifiableSet(this.listenerContainers.keySet());
@@ -194,13 +194,13 @@ public class JmsListenerEndpointRegistry implements DisposableBean, SmartLifecyc
// Delegating implementation of SmartLifecycle
@Override
public int getPhase() {
return this.phase;
public boolean isAutoStartup() {
return true;
}
@Override
public boolean isAutoStartup() {
return true;
public int getPhase() {
return this.phase;
}
@Override