org.broadleafcommerce.common.extensibility.context.AbstractMergeXMLApplicationContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of broadleaf-common Show documentation
Show all versions of broadleaf-common Show documentation
A collection of classes shared by broadleaf profile, cms, admin, and core.
package org.broadleafcommerce.common.extensibility.context;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.AbstractXmlApplicationContext;
import org.springframework.core.io.Resource;
/**
* Provides common functionality to all Broadleaf merge application contexts
*
* @author Phillip Verheyden (phillipuniverse)
*/
public abstract class AbstractMergeXMLApplicationContext extends AbstractXmlApplicationContext {
protected Resource[] configResources;
protected Resource[] getConfigResources() {
return this.configResources;
}
public AbstractMergeXMLApplicationContext(ApplicationContext parent) {
super(parent);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy