Object callResults = null;
try
{
if (trace) log.trace("Clustered get: invoking call with Fqn " + dataCommand.getFqn());
InvocationContext ctx = interceptorChain.getInvocationContext();
ctx.setOriginLocal(false);
ctx.setBypassUnmarshalling(true);
callResults = interceptorChain.invoke(ctx, dataCommand);
Set mapCallRes;
if (dataCommand instanceof GetChildrenNamesCommand && (mapCallRes = (Set) callResults) != null && mapCallRes.isEmpty())
callResults = null;
boolean found = validResult(callResults);