*/
public long getNodeQuota(String repositoryName, String workspaceName, String nodePath)
throws UnknownQuotaLimitException
{
String workspaceUniqueName = composeWorkspaceUniqueName(repositoryName, workspaceName);
CacheKey key = new NodeQuotaKey(workspaceUniqueName, nodePath);
return getQuotaValue(key).getQuotaLimit();
}