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

aQute.lib.spring.SpringXMLType Maven / Gradle / Ivy

package aQute.lib.spring;

import java.util.*;

import aQute.bnd.annotation.plugin.*;
import aQute.bnd.osgi.*;

/**
 * This component is called when we find a resource in the META-INF/*.xml
 * pattern. We parse the resource and and the imports to the builder. Parsing is
 * done with XSLT (first time I see the use of having XML for the Spring
 * configuration files!).
 * 
 * @author aqute
 */
@BndPlugin(name="blueprint")
public class SpringXMLType extends XMLTypeProcessor {

	@Override
	protected List getTypes(Analyzer analyzer) throws Exception {
		List types = new ArrayList();

		String header = analyzer.getProperty(Constants.BUNDLE_BLUEPRINT, "OSGI-INF/blueprint");
		process(types, "extract.xsl", header, ".*\\.xml");
		header = analyzer.getProperty("Spring-Context", "META-INF/spring");
		process(types, "extract.xsl", header, ".*\\.xml");

		return types;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy