return global.authoriseRead(resource, user);
return result;
}
public boolean authoriseWrite(V7File resource, AuthenticationToken user) {
V7File parent = resource.getParent();
if (parent != null) {
if (!authoriseOpen(parent, user))
return false;
}
Boolean result = authorise(resource, user, "write");