mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
20 lines
683 B
Java
20 lines
683 B
Java
package com.avaje.ebeaninternal.server.deploy;
|
|
|
|
import com.avaje.ebeaninternal.server.deploy.meta.DeployBeanPropertySimpleCollection;
|
|
import com.avaje.ebeaninternal.server.type.ScalarType;
|
|
|
|
public class BeanPropertySimpleCollection<T> extends BeanPropertyAssocMany<T> {
|
|
|
|
private final ScalarType<T> collectionScalarType;
|
|
|
|
public BeanPropertySimpleCollection(BeanDescriptorMap owner, BeanDescriptor<?> descriptor, DeployBeanPropertySimpleCollection<T> deploy) {
|
|
super(owner, descriptor, deploy);
|
|
this.collectionScalarType = deploy.getCollectionScalarType();
|
|
}
|
|
|
|
public void initialise() {
|
|
super.initialise();
|
|
}
|
|
|
|
}
|