Polishing for GH-570
- Add back old property in deprecated form for backwards compatibility.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2015 the original author or authors.
|
||||
* Copyright 2015-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.
|
||||
@@ -38,6 +38,16 @@ class RabbitBinderConfigurationProperties {
|
||||
this.adminAddresses = adminAddresses;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param adminAddresses A comma-separated list of RabbitMQ management plugin URLs.
|
||||
* @deprecated in favor of {@link #setAdminAddresses(String[])}. Will be removed in a
|
||||
* future release.
|
||||
*/
|
||||
@Deprecated
|
||||
public void setAdminAdresses(String[] adminAddresses) {
|
||||
setAdminAddresses(adminAddresses);
|
||||
}
|
||||
|
||||
public String[] getNodes() {
|
||||
return nodes;
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2015 the original author or authors.
|
||||
* Copyright 2015-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.
|
||||
|
||||
Reference in New Issue
Block a user