@Path("{id}")
@Produces({ JSON })
public WrappedQuotaSet doLimitsGet(@PathParam("id") String projectId) throws CloudException {
warnStub();
WrappedQuotaSet response = new WrappedQuotaSet();
response.quotaSet = new QuotaSet();
fillEmptyQuotas(response.quotaSet);
response.quotaSet.id = projectId;