mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#115 - Mapping - Add support for @ElementCollection enhancement
Initial support - simple List.
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user