All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.agiletec.aps.system.common.entity.loader.ExtraAttributeRolesWrapper Maven / Gradle / Ivy

Go to download

Entando Engine: an agile, modern and user-centric open source Portal platform.

There is a newer version: 6.2.27
Show newest version
/*
 * 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.model.attribute.AttributeRole;
import com.agiletec.aps.system.common.entity.parse.AttributeRoleDOM;
import com.agiletec.aps.system.exception.ApsSystemException;

/**
 * The Wrapper Class of the extra attribute roles.
 * @author E.Santoboni
 */
public class ExtraAttributeRolesWrapper extends AbstractExtraAttributeSupportObject {

	private static final Logger _logger =  LoggerFactory.getLogger(ExtraAttributeRolesWrapper.class);
	
	public void executeLoading(Map collectionToFill, IEntityManager entityManager) throws ApsSystemException {
		String managerName = ((IManager) entityManager).getName();
		if (!managerName.equals(super.getEntityManagerNameDest())) {
			return;
		}
		AttributeRoleDOM dom = new AttributeRoleDOM();
		try {
			String xml = super.extractXml();
			Map attributeRoles = dom.extractRoles(xml, this.getDefsFilePath());
			List roles = new ArrayList<>(attributeRoles.values());
			for (int i = 0; i < roles.size(); i++) {
				AttributeRole role = roles.get(i);
				if (collectionToFill.containsKey(role.getName())) {
					_logger.warn("You can't override existing attribute role : {} - {}", role.getName(), role.getDescription());
				} else {
					collectionToFill.put(role.getName(), role);
					_logger.info("Added new attribute role : {} - {}",role.getName(), role.getDescription());
				}
			}
		} catch (Throwable t) {
			//ApsSystemUtils.logThrowable(t, this, "executeLoading", "Error loading extra attribute Roles");
			_logger.error("Error loading extra attribute Roles", t);
		}
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy