INT-3279-3.0.x: Fix class tangle

JIRA: https://jira.springsource.org/browse/INT-3279
This commit is contained in:
Artem Bilan
2014-01-29 17:53:17 +02:00
committed by Gary Russell
parent 42f5d14b92
commit 41808beb29

View File

@@ -98,7 +98,7 @@ public final class IntegrationProperties {
*/
public static String getExpressionFor(String key) {
if (defaults.containsKey(key)) {
return "#{T(" + IntegrationContextUtils.class.getName() + ").getIntegrationProperties(beanFactory).getProperty('" + key + "')}";
return "#{T(org.springframework.integration.context.IntegrationContextUtils).getIntegrationProperties(beanFactory).getProperty('" + key + "')}";
}
else {
throw new IllegalArgumentException("The provided key [" + key + "] isn't the one of Integration properties: " + defaults.keySet());