mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
21 lines
432 B
Java
21 lines
432 B
Java
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;
|
|
}
|
|
}
|