mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
12 lines
356 B
Java
12 lines
356 B
Java
package io.ebeaninternal.server.deploy;
|
|
|
|
import io.ebeaninternal.server.deploy.meta.DeployBeanPropertySimpleCollection;
|
|
|
|
public class BeanPropertySimpleCollection<T> extends BeanPropertyAssocMany<T> {
|
|
|
|
public BeanPropertySimpleCollection(BeanDescriptor<?> descriptor, DeployBeanPropertySimpleCollection<T> deploy) {
|
|
super(descriptor, deploy);
|
|
}
|
|
|
|
}
|