All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebean.querybean.generator.ModuleMeta Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebean.querybean.generator;

import java.util.List;

class ModuleMeta {
  private final List entities;
  private final List other;

  ModuleMeta(List entities, List other) {
    this.entities = entities;
    this.other = other;
  }

  List getEntities() {
    return entities;
  }

  List getOther() {
    return other;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy