@@ -1065,66 +1065,66 @@ protected AddressResolver createAddressResolver(List<Address> addresses) {
1065
1065
* @param propertyFileLocation location of the property file to use
1066
1066
* @throws IOException when something goes wrong reading the file
1067
1067
* @since 4.4.0
1068
- * @see ConnectionFactoryConfigurer
1068
+ * @see ConnectionFactoryConfigurator
1069
1069
*/
1070
1070
public void load (String propertyFileLocation ) throws IOException {
1071
- ConnectionFactoryConfigurer .load (this , propertyFileLocation );
1071
+ ConnectionFactoryConfigurator .load (this , propertyFileLocation );
1072
1072
}
1073
1073
1074
1074
/**
1075
1075
* Load settings from a property file.
1076
1076
* @param propertyFileLocation location of the property file to use
1077
- * @param prefix prefix used in the property file keys
1077
+ * @param prefix key prefix for the entries in the file
1078
1078
* @throws IOException when something goes wrong reading the file
1079
1079
* @since 4.4.0
1080
- * @see ConnectionFactoryConfigurer
1080
+ * @see ConnectionFactoryConfigurator
1081
1081
*/
1082
1082
public void load (String propertyFileLocation , String prefix ) throws IOException {
1083
- ConnectionFactoryConfigurer .load (this , propertyFileLocation , prefix );
1083
+ ConnectionFactoryConfigurator .load (this , propertyFileLocation , prefix );
1084
1084
}
1085
1085
1086
1086
/**
1087
1087
* Load settings from a {@link Properties} instance.
1088
1088
* The default prefix for keys is <code>rabbitmq.</code>
1089
1089
* @param properties source for settings
1090
1090
* @since 4.4.0
1091
- * @see ConnectionFactoryConfigurer
1091
+ * @see ConnectionFactoryConfigurator
1092
1092
*/
1093
1093
public void load (Properties properties ) {
1094
- ConnectionFactoryConfigurer .load (this , properties );
1094
+ ConnectionFactoryConfigurator .load (this , properties );
1095
1095
}
1096
1096
1097
1097
/**
1098
1098
* Load settings from a {@link Properties} instance.
1099
1099
* @param properties source for settings
1100
- * @param prefix prefix used in keys
1100
+ * @param prefix key prefix for properties entries
1101
1101
* @since 4.4.0
1102
- * @see ConnectionFactoryConfigurer
1102
+ * @see ConnectionFactoryConfigurator
1103
1103
*/
1104
1104
public void load (Properties properties , String prefix ) {
1105
- ConnectionFactoryConfigurer .load (this , (Map ) properties , prefix );
1105
+ ConnectionFactoryConfigurator .load (this , (Map ) properties , prefix );
1106
1106
}
1107
1107
1108
1108
/**
1109
1109
* Load settings from a {@link Map} instance.
1110
1110
* The default prefix for keys is <code>rabbitmq.</code>
1111
1111
* @param properties source for settings
1112
1112
* @since 4.4.0
1113
- * @see ConnectionFactoryConfigurer
1113
+ * @see ConnectionFactoryConfigurator
1114
1114
*/
1115
1115
public void load (Map <String , String > properties ) {
1116
- ConnectionFactoryConfigurer .load (this , properties );
1116
+ ConnectionFactoryConfigurator .load (this , properties );
1117
1117
}
1118
1118
1119
1119
/**
1120
1120
* Load settings from a {@link Map} instance.
1121
1121
* @param properties source for settings
1122
- * @param prefix prefix used in keys
1122
+ * @param prefix key prefix for map entries
1123
1123
* @since 4.4.0
1124
- * @see ConnectionFactoryConfigurer
1124
+ * @see ConnectionFactoryConfigurator
1125
1125
*/
1126
1126
public void load (Map <String , String > properties , String prefix ) {
1127
- ConnectionFactoryConfigurer .load (this , properties , prefix );
1127
+ ConnectionFactoryConfigurator .load (this , properties , prefix );
1128
1128
}
1129
1129
1130
1130
/**
0 commit comments