public void advise(ComponentMethodInvocation invocation)
{
logger.debug(String.format("%s invoking default method %s", invocation.getComponentResources()
.getCompleteId(), defaultMethodAccess));
MethodInvocationResult result = defaultMethodAccess.invoke(invocation.getInstance());
result.rethrow();
getConduit(invocation, conduitAccess).setDefault(result.getReturnValue());
invocation.proceed();
}