Add public getter for dependency context

This commit is contained in:
Dave Syer 2014-07-31 15:57:41 -07:00
parent 59b8fc63d9
commit 6ba8269db8
1 changed files with 7 additions and 0 deletions

View File

@ -255,4 +255,11 @@ public class DependencyCustomizer {
protected boolean canAdd() {
return true;
}
/**
* @return the dependencyResolutionContext
*/
public DependencyResolutionContext getDependencyResolutionContext() {
return this.dependencyResolutionContext;
}
}