mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Adds PropertyAssocMany to ensure public access on BeanPropertyAssocMany helper methods for ebean-elastic integration.
20 lines
355 B
Java
20 lines
355 B
Java
package io.ebeaninternal.server.deploy;
|
|
|
|
public class BeanEmbeddedMeta {
|
|
|
|
|
|
private final BeanProperty[] properties;
|
|
|
|
BeanEmbeddedMeta(BeanProperty[] properties) {
|
|
this.properties = properties;
|
|
}
|
|
|
|
/**
|
|
* Return the properties with over ridden mapping information.
|
|
*/
|
|
public BeanProperty[] getProperties() {
|
|
return properties;
|
|
}
|
|
|
|
}
|