public void completeTargetChain(TargetWireFactory targetFactory, Class targetType, ScopeContext targetScopeContext)
throws BuilderConfigException {
if (FooExternalServiceContextFactory.class.isAssignableFrom(targetType)) {
for (TargetInvocationConfiguration targetInvocationConfig : targetFactory.getConfiguration().getInvocationConfigurations()
.values()) {
TargetInvoker invoker = new FooExternalServiceTargetInvoker(targetFactory.getConfiguration().getTargetName().getQualifiedName());
targetInvocationConfig.setTargetInvoker(invoker);
}
}
}