Example usage for org.springframework.context ResourceLoaderAware interface-usage

List of usage examples for org.springframework.context ResourceLoaderAware interface-usage

Introduction

In this page you can find the example usage for org.springframework.context ResourceLoaderAware interface-usage.

Usage

From source file org.alfresco.repo.web.scripts.content.ContentStreamer.java

/**
 * Can be used when the binary data of a content property needs to be streamed back to the client
 * as the result of executing a web script.
 * 
 * These methods are taken from the StreamContent class so they can be reused by other webscripts.
 *

From source file org.alfresco.rest.api.impl.RenditionsImpl.java

/**
 * @author Jamal Kaabi-Mofrad
 */
public class RenditionsImpl implements Renditions, ResourceLoaderAware {
    private static final Log LOGGER = LogFactory.getLog(RenditionsImpl.class);

From source file org.apache.cocoon.core.xml.impl.DefaultEntityResolver.java

/**
 * A component that uses catalogs for resolving entities.
 * This implementation uses the XML Entity and URI Resolvers from
 * http://xml.apache.org/commons/
 * published by Norman Walsh. More information on the catalogs can be
 * found at

From source file org.apache.syncope.core.misc.spring.ResourceWithFallbackLoader.java

public class ResourceWithFallbackLoader implements ResourceLoaderAware, ResourcePatternResolver {

    private ResourcePatternResolver resolver;

    private String primary;

From source file org.apache.syncope.core.spring.ResourceWithFallbackLoader.java

public class ResourceWithFallbackLoader implements ResourceLoaderAware, ResourcePatternResolver {

    private ResourcePatternResolver resolver;

    private String primary;

From source file org.apereo.portal.portlets.portletadmin.xmlsupport.XmlChannelPublishingDefinitionDao.java

/**
 * @author Eric Dalquist
 */
@Service("channelPublishingDefinitionDao")
public class XmlChannelPublishingDefinitionDao
        implements IChannelPublishingDefinitionDao, ResourceLoaderAware, InitializingBean {

From source file org.apereo.portal.rendering.xslt.XSLTComponent.java

/**
 * @author Eric Dalquist
 * @version $Revision$
 */
public class XSLTComponent extends StAXPipelineComponentWrapper implements BeanNameAware, ResourceLoaderAware {
    protected final Logger logger = LoggerFactory.getLogger(this.getClass());

From source file org.apereo.portal.tools.dbloader.HibernateDbLoader.java

/**
 * Can drop and/or create tables based on an XML table definition file and populate tables
 * based on a XML data definition file. Table creation is done using the Hibernate mapping
 * APIs to allow for a full range of database support.
 * 
 * @author Eric Dalquist

From source file org.apereo.portal.utils.cache.resource.TemplatesBuilder.java

/**
 * Parses the provided input stream into a {@link Templates} object.
 * 
 * @author Eric Dalquist
 * @version $Revision$
 */

From source file org.astore.storefront.web.theme.StorefrontResourceBundleSource.java

/**
 * CustomResourceBundleThemeSource. Supports site and theme specific resource bundles. Uses a
 * ReloadableResourceBundleMessageSource to load the theme file. Delegates to a message source if the theme specific
 * file cannot be found.
 */
public class StorefrontResourceBundleSource implements ThemeSource, ResourceLoaderAware, MessageSource {