Polish @deprecated javadoc and link to replacements where available

Closes gh-6765
This commit is contained in:
Andy Wilkinson
2016-08-31 14:34:49 +01:00
parent d720645275
commit 3814e509a3
31 changed files with 38 additions and 32 deletions

View File

@@ -41,7 +41,7 @@ import org.springframework.context.annotation.Import;
* @author Phillip Webb
* @since 1.1.0
* @see HornetQProperties
* @deprecated as of 1.4 in favor of the artemis support
* @deprecated as of 1.4 in favor of the Artemis support
*/
@Configuration
@AutoConfigureBefore(JmsAutoConfiguration.class)

View File

@@ -27,7 +27,7 @@ import org.hornetq.jms.server.embedded.EmbeddedJMS;
* @author Phillip Webb
* @since 1.1.0
* @see HornetQAutoConfiguration
* @deprecated as of 1.4 in favor of the artemis support
* @deprecated as of 1.4 in favor of the Artemis support
*/
@Deprecated
public interface HornetQConfigurationCustomizer {

View File

@@ -30,7 +30,7 @@ import org.springframework.context.annotation.Configuration;
*
* @author Phillip Webb
* @since 1.2.0
* @deprecated as of 1.4 in favor of the artemis support
* @deprecated as of 1.4 in favor of the Artemis support
*/
@Configuration
@ConditionalOnMissingBean(ConnectionFactory.class)

View File

@@ -40,7 +40,7 @@ import org.springframework.util.ClassUtils;
* @author Phillip Webb
* @author Stephane Nicoll
* @since 1.2.0
* @deprecated as of 1.4 in favor of the artemis support
* @deprecated as of 1.4 in favor of the Artemis support
*/
@Deprecated
class HornetQConnectionFactoryFactory {

View File

@@ -34,7 +34,7 @@ import org.springframework.boot.autoconfigure.jms.hornetq.HornetQProperties.Embe
* @author Stephane Nicoll
* @author Phillip Webb
* @since 1.1.0
* @deprecated as of 1.4 in favor of the artemis support
* @deprecated as of 1.4 in favor of the Artemis support
*/
@Deprecated
class HornetQEmbeddedConfigurationFactory {

View File

@@ -41,7 +41,7 @@ import org.springframework.core.annotation.AnnotationAwareOrderComparator;
* @author Phillip Webb
* @author Stephane Nicoll
* @since 1.2.0
* @deprecated as of 1.4 in favor of the artemis support
* @deprecated as of 1.4 in favor of the Artemis support
*/
@Configuration
@ConditionalOnClass(name = HornetQConnectionFactoryFactory.EMBEDDED_JMS_CLASS)

View File

@@ -21,7 +21,7 @@ package org.springframework.boot.autoconfigure.jms.hornetq;
*
* @author Stephane Nicoll
* @since 1.1.0
* @deprecated as of 1.4 in favor of the artemis support
* @deprecated as of 1.4 in favor of the Artemis support
*/
@Deprecated
public enum HornetQMode {

View File

@@ -23,7 +23,7 @@ import org.hornetq.spi.core.naming.BindingRegistry;
*
* @author Stephane Nicoll
* @since 1.1.0
* @deprecated as of 1.4 in favor of the artemis support
* @deprecated as of 1.4 in favor of the Artemis support
*/
@Deprecated
public class HornetQNoOpBindingRegistry implements BindingRegistry {

View File

@@ -30,7 +30,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
*
* @author Stephane Nicoll
* @since 1.1.0
* @deprecated as of 1.4 in favor of the artemis support
* @deprecated as of 1.4 in favor of the Artemis support
*/
@ConfigurationProperties(prefix = "spring.hornetq")
@Deprecated

View File

@@ -35,7 +35,7 @@ import org.springframework.context.annotation.Primary;
*
* @author Phillip Webb
* @since 1.2.0
* @deprecated as of 1.4 in favor of the artemis support
* @deprecated as of 1.4 in favor of the Artemis support
*/
@Configuration
@ConditionalOnMissingBean(ConnectionFactory.class)

View File

@@ -30,7 +30,7 @@ import org.springframework.util.StringUtils;
*
* @author Stéphane Lagraulet
* @author Stephane Nicoll
* @deprecated as of 1.4 in favor of the artemis support
* @deprecated as of 1.4 in favor of the Artemis support
*/
@Deprecated
class SpringBootHornetQConnectionFactory extends HornetQConnectionFactory {

View File

@@ -30,7 +30,7 @@ import org.springframework.util.StringUtils;
*
* @author Stéphane Lagraulet
* @author Stephane Nicoll
* @deprecated as of 1.4 in favor of the artemis support
* @deprecated as of 1.4 in favor of the Artemis support
*/
@Deprecated
class SpringBootHornetQXAConnectionFactory extends HornetQXAConnectionFactory {

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2015 the original author or authors.
* Copyright 2012-2016 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,5 +16,6 @@
/**
* Auto-configuration for HornetQ.
* @deprecated as of 1.4 in favor of the Artemis support
*/
package org.springframework.boot.autoconfigure.jms.hornetq;

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2015 the original author or authors.
* Copyright 2012-2016 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,5 +16,7 @@
/**
* Auto-configuration for Velocity.
* @deprecated as of 1.4 following the deprecation of Velocity support in Spring Framework
* 4.3
*/
package org.springframework.boot.autoconfigure.velocity;