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.springmodules.validation.valang.LifeCycleTestFunction.java

public class LifeCycleTestFunction extends AbstractFunction implements ApplicationContextAware, BeanFactoryAware,
        ResourceLoaderAware, MessageSourceAware, ApplicationEventPublisherAware, ServletContextAware {

    private Date timestamp = null;

    private Pattern pattern = null;

From source file org.obiba.onyx.core.service.impl.DefaultAppointmentManagementServiceImpl.java

@Transactional
public class DefaultAppointmentManagementServiceImpl extends PersistenceManagerAwareService
        implements AppointmentManagementService, ResourceLoaderAware {

    private JobExplorer jobExplorer;

From source file org.sakaiproject.lessonbuildertool.service.SimplePageToolService.java

/**
 * Currently, the sole purpose of this service is to register our edit permission, and create table
 * indices.
 * 
 * @author Maarten van Hoof
 * 

From source file at.gv.egiz.bku.slcommands.impl.IdentityLinkTransformer.java

public class IdentityLinkTransformer extends at.gv.egiz.idlink.IdentityLinkTransformer
        implements ResourceLoaderAware {

    private final Logger log = LoggerFactory.getLogger(IdentityLinkTransformer.class);

    /**

From source file org.obiba.onyx.spring.AnnotatedBeanFinderFactoryBean.java

/**
 * <p>This class is for automatic searching annotated classes (i.e. Hibernate entity classes with <code>Entity</code>
 * annotation). It is mostly for use with Hibernate's <code>SessionFactory</code> in the Spring application context,
 * but can be used to find classes that match any annotations. This code is based on William Mo's
 * <code>EntityBeanFinderFactoryBean</code>.
 * </p>

From source file org.jasig.portlet.courses.handler.MobileAwareExceptionHandler.java

/**
 * Check if the request that failed is from a mobile device and uses a mobile
 * view if one exists.
 * <p/>
 *
 * applicationContext.xml Example:

From source file org.red5.server.net.proxy.DebugProxyHandler.java

import org.red5.server.net.rtmp.codec.RTMP;
import org.red5.server.net.rtmp.message.Header;
import org.red5.server.net.rtmp.message.Packet;
import org.springframework.context.ResourceLoaderAware;
import org.springframework.core.io.ResourceLoader;

From source file net.sourceforge.mavenhippo.utils.MetadataReaderClasspathResourceScanner.java

/**
 * MetadataReaderClasspathResourceScanner
 * <P>
 * This class implements {@link ClasspathResourceScanner} by leveraging Spring
 * Framework components.
 * </P>

From source file org.focusns.common.web.page.config.xml.XmlPageFactory.java

public class XmlPageFactory extends AbstractPageFactory implements ResourceLoaderAware {

    private String prefix = "/WEB-INF/pages";
    private String suffix = ".xml";

    private ResourceLoader resourceLoader;

From source file org.apache.james.container.spring.lifecycle.ConfigurationProviderImpl.java

 * Register Configuration and act as Configuration Provider.
 */
public class ConfigurationProviderImpl implements ConfigurationProvider, ResourceLoaderAware, InitializingBean {
    private static final String CONFIGURATION_FILE_SUFFIX = ".xml";

    /**