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

org.milyn.cdr.extension.MapToResourceConfigFromAttribute Maven / Gradle / Ivy

There is a newer version: 1.7.1
Show newest version
/*
	Milyn - Copyright (C) 2006 - 2010

	This library is free software; you can redistribute it and/or
	modify it under the terms of the GNU Lesser General Public
	License (version 2.1) as published by the Free Software
	Foundation.

	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:
	http://www.gnu.org/licenses/lgpl.txt
*/
package org.milyn.cdr.extension;

import java.util.EmptyStackException;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.milyn.SmooksException;
import org.milyn.cdr.SmooksResourceConfiguration;
import org.milyn.cdr.annotation.AnnotationConstants;
import org.milyn.cdr.annotation.ConfigParam;
import org.milyn.cdr.annotation.ConfigParam.Use;
import org.milyn.container.ExecutionContext;
import org.milyn.delivery.dom.DOMVisitBefore;
import org.milyn.xml.DomUtils;
import org.w3c.dom.Element;

/**
 * Map a property value onto the current {@link SmooksResourceConfiguration} based on an
 * element attribute value.
 * 

* The value is set on the {@link SmooksResourceConfiguration} returned from the top * of the {@link org.milyn.cdr.extension.ExtensionContext#getResourceStack() ExtensionContext resourece stack}. * * @author [email protected] */ public class MapToResourceConfigFromAttribute implements DOMVisitBefore { private static Log logger = LogFactory.getLog(MapToResourceConfigFromAttribute.class); @ConfigParam(use=Use.OPTIONAL) private String mapTo; @ConfigParam(use = ConfigParam.Use.OPTIONAL) private String mapToSpecifier; @ConfigParam private String attribute; @ConfigParam(defaultVal = AnnotationConstants.NULL_STRING) private String defaultValue; public void visitBefore(Element element, ExecutionContext executionContext) throws SmooksException { SmooksResourceConfiguration config; String value = DomUtils.getAttributeValue(element, attribute); String actualMapTo = mapTo; if(actualMapTo == null && mapToSpecifier != null) { actualMapTo = DomUtils.getAttributeValue(element, mapToSpecifier); } //If no mapTo is set then the attribute value becomes the mapTo value if(actualMapTo == null) { actualMapTo = attribute; } try { config = ExtensionContext.getExtensionContext(executionContext).getResourceStack().peek(); } catch (EmptyStackException e) { throw new SmooksException("No SmooksResourceConfiguration available in ExtensionContext stack. Unable to set SmooksResourceConfiguration property '" + actualMapTo + "' with attribute '" + attribute + "' value '" + value + "'."); } if (value == null) { value = defaultValue; } if (value == null) { if(logger.isDebugEnabled()) { logger.debug("Not setting property '" + actualMapTo + "' on resource configuration. Attribute '" + attribute + "' value on element '" + DomUtils.getName(element) + "' is null. You may need to set a default value in the binding configuration."); } return; } else { if(logger.isDebugEnabled()) { logger.debug("Setting property '" + actualMapTo + "' on resource configuration to a value of '" + value + "'."); } } ResourceConfigUtil.setProperty(config, actualMapTo, value, executionContext); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy