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

io.ebeaninternal.server.query.ExtraJoin Maven / Gradle / Ivy

There is a newer version: 15.6.0
Show newest version
package io.ebeaninternal.server.query;

public class ExtraJoin {

  private final STreePropertyAssoc property;
  private final boolean containsMany;

  public ExtraJoin(STreePropertyAssoc property, boolean containsMany) {
    this.property = property;
    this.containsMany = containsMany;
  }

  public STreePropertyAssoc getProperty() {
    return property;
  }

  public boolean isContainsMany() {
    return containsMany;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy