RESOLVED - issue BATCH-527: StepExecutionResourceProxy toString() should delegate to delegate.toString()

This commit is contained in:
robokaso
2008-03-31 14:05:03 +00:00
parent 4f0cb707cb
commit 4f74d0c9f7
2 changed files with 28 additions and 0 deletions

View File

@@ -287,4 +287,13 @@ public class StepExecutionResourceProxy extends StepExecutionListenerSupport imp
delegate = resourceLoader.getResource(createFileName(jobName, stepName, properties));
}
/**
* Delegates to the proxied Resource.
*/
public String toString() {
return delegate.toString();
}
}