String jcrPath = (String) cl.getValue(argJcrPath);
ConsoleFile wo = ctx.getFile(jcrPath, true);
if (wo instanceof VaultFsCFile) {
VaultFile file = (VaultFile) wo.unwrap();
file.invalidate();
} else {
throw new ExecutionException("'cat' only possible in jcr fs context");
}
}