} else if (qName.endsWith("Limit")) {
limit = Integer.parseInt(currentOrNull());
} else if (qName.endsWith("Overhead")) {
overhead = Integer.parseInt(currentOrNull());
} else if (qName.endsWith("StorageCapacity")) {
storageCapacity = new Capacity(units, allocated, limit, used, overhead);
resetCapacity();
} else if (qName.endsWith("Cpu")) {
cpuCapacity = new Capacity(units, allocated, limit, used, overhead);
resetCapacity();
} else if (qName.endsWith("Memory")) {
memoryCapacity = new Capacity(units, allocated, limit, used, overhead);
resetCapacity();
} else if (qName.endsWith("DeployedVmsQuota")) {
vmQuota = (int) limit;
// vcloud express doesn't have the zero is unlimited rule
if (vmQuota == -1)