io.ebeaninternal.server.deploy.meta.DeployBeanPropertySimpleCollection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebean Show documentation
Show all versions of ebean Show documentation
composite of common runtime dependencies for all platforms
package io.ebeaninternal.server.deploy.meta;
import io.ebean.bean.BeanCollection.ModifyListenMode;
import io.ebeaninternal.server.deploy.ManyType;
public class DeployBeanPropertySimpleCollection extends DeployBeanPropertyAssocMany {
public DeployBeanPropertySimpleCollection(DeployBeanDescriptor> desc, Class targetType, ManyType manyType) {
super(desc, targetType, manyType);
this.modifyListenMode = ModifyListenMode.ALL;
}
/**
* Returns false as never a ManyToMany.
*/
@Override
public boolean isManyToMany() {
return false;
}
/**
* Returns true as always Unidirectional.
*/
@Override
public boolean isUnidirectional() {
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy