com.agiletec.aps.system.common.entity.loader.ExtraAttributeDisablingCodesWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of entando-engine Show documentation
Show all versions of entando-engine Show documentation
Entando Engine: an agile, modern and user-centric open source Portal platform.
/*
* Copyright 2015-Present Entando Inc. (http://www.entando.com) All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.agiletec.aps.system.common.entity.loader;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.agiletec.aps.system.common.IManager;
import com.agiletec.aps.system.common.entity.IEntityManager;
import com.agiletec.aps.system.common.entity.parse.AttributeDisablingCodesDOM;
import com.agiletec.aps.system.exception.ApsSystemException;
/**
* The Class of the extra attribute disabling codes.
* @author E.Santoboni
*/
public class ExtraAttributeDisablingCodesWrapper extends AbstractExtraAttributeSupportObject {
private static final Logger _logger = LoggerFactory.getLogger(ExtraAttributeDisablingCodesWrapper.class);
public void executeLoading(Map collectionToFill, IEntityManager entityManager) throws ApsSystemException {
String managerName = ((IManager) entityManager).getName();
if (!managerName.equals(super.getEntityManagerNameDest())) {
return;
}
try {
String xml = super.extractXml();
AttributeDisablingCodesDOM dom = new AttributeDisablingCodesDOM();
Map codeMap = dom.extractDisablingCodes(xml, this.getDefsFilePath());
List codes = new ArrayList<>(codeMap.keySet());
for (int i = 0; i < codes.size(); i++) {
String code = codes.get(i);
if (collectionToFill.containsKey(code)) {
_logger.warn("You can't override existing disabling code : {} - {}", code, collectionToFill.get(code));
} else {
collectionToFill.put(code, codeMap.get(code));
_logger.info("Added new disabling code : {} - {}", code, collectionToFill.get(code));
}
}
} catch (Throwable t) {
//ApsSystemUtils.logThrowable(t, this, "executeLoading", "Error loading extra attribute disabling codes");
_logger.error("Error loading extra attribute disabling codes", t);
}
}
}