public StateWriter addAggregate(final String id) {
final JsonStateWriter jsonStateWriter = new JsonStateWriter(null, null);
try {
dbObject.put(id, jsonStateWriter.dbObject);
} catch (final JSONException e) {
throw new NoSqlStoreException(e);
}
return jsonStateWriter;
}