public void setGroupOfNodesQuota(String repositoryName, String workspaceName, String patternPath, long quotaLimit,
boolean asyncUpdate)
{
String workspaceUniqueName = composeWorkspaceUniqueName(repositoryName, workspaceName);
CacheKey key = new GroupOfNodesQuotaKey(workspaceUniqueName, patternPath);
QuotaValue value = new QuotaValue(quotaLimit, asyncUpdate);
cache.put(key, value);
}