private List<QueryParser> queryParsers;
@Override
public <T> T getModel(Class<T> model, String oid) {
LOGGER.debug("Invoked getModel with the model {} and the oid {}", model.getName(), oid);
EDBObject object = edbService.getObject(oid);
return edbConverter.convertEDBObjectToModel(model, object);
}