io.ebeaninternal.server.deploy.meta.DeployBeanEmbedded 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 java.util.HashMap;
import java.util.Map;
/**
* Collects Deployment information on Embedded beans.
*
* Typically collects the overridden column names mapped
* to the Embedded bean.
*
*/
public class DeployBeanEmbedded {
/**
* A map of property names to dbColumns.
*/
private final Map propMap = new HashMap<>();
/**
* Set a Map of property names to dbColumns.
*/
public void putAll(Map propertyColumnMap) {
propMap.putAll(propertyColumnMap);
}
/**
* Return a map of property names to dbColumns.
*/
public Map getPropertyColumnMap() {
return propMap;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy