use of com.agiletec.aps.system.common.entity.loader.ExtraAttributeLoader in project entando-core by entando.
the class EntityTypeDOM method initDom.
protected Document initDom(String xml, String entityManagerName) throws ApsSystemException {
if (null != entityManagerName) {
ExtraAttributeLoader loader = new ExtraAttributeLoader();
Map<String, AttributeInterface> extraAttributes = loader.extractAttributes(this.getBeanFactory(), entityManagerName);
if (null != extraAttributes) {
this.getAttributeTypes().putAll(extraAttributes);
}
}
this.setEntityManagerName(entityManagerName);
return this.decodeDOM(xml);
}
Aggregations