BATCH-1614: added toString()

This commit is contained in:
dsyer
2010-08-13 10:26:58 +00:00
parent e4344f303f
commit 2922b2d3d1

View File

@@ -245,6 +245,11 @@ public class ClassPathXmlApplicationContextFactory implements ApplicationContext
protected Resource[] getConfigResources() {
return new Resource[] { resource };
}
@Override
public String toString() {
return "ResourceXmlApplicationContext:"+getId();
}
}