Entity Beans for getting "Meta" data from Ebean

You can query these entity beans to get "meta" data from Ebean. This includes things like query execution statistics.

// fetch the meta data that controls autoFetch query tuning
Query query = Ebean.createQuery(MetaAutoFetchTunedFetch.class);
List list = query.findList();