Example usage for org.springframework.beans.factory Aware interface-usage

List of usage examples for org.springframework.beans.factory Aware interface-usage

Introduction

In this page you can find the example usage for org.springframework.beans.factory Aware interface-usage.

Usage

From source file org.vaadin.spring.security.VaadinSecurityAware.java

/**
 * Interface to be implemented by any object that wishes to be notified
 * of the {@link org.vaadin.spring.security.VaadinSecurity}.
 *
 * @author Gert-Jan Timmer (gjr.timmer@gmail.com)
 */

From source file org.vaadin.spring.security.VaadinSecurityContextAware.java

/**
 * Interface to be implemented by any object that wishes to be notified
 * of the {@link org.vaadin.spring.security.VaadinSecurityContext}.
 *
 * @author Gert-Jan Timmer (gjr.timmer@gmail.com)
 */

From source file cz.jirutka.spring.exhandler.interpolators.MessageInterpolatorAware.java

/**
 * Interface to be implemented by any object that wishes to be notified
 * of the {@link MessageInterpolator} to use.
 */
public interface MessageInterpolatorAware extends Aware {

From source file org.vaadin.spring.events.EventBusAware.java

/**
 * Marker super interface for beans that want to get notified of a specific type of event bus.
 *
 * @author Petter Holmstrm (petter@vaadin.com)
 */
public interface EventBusAware extends Aware {

From source file com.github.shredder121.gh_event_api.testutil.ErrorCollectorAware.java

public interface ErrorCollectorAware extends Aware {

    void setErrorCollector(ErrorCollector errorCollector) throws BeansException;
}

From source file com.github.shredder121.gh_event_api.testutil.CountDownLatchAware.java

public interface CountDownLatchAware extends Aware {

    void setCountDownLatch(CountDownLatch countDownLatch) throws BeansException;
}