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

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

Introduction

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

Usage

From source file de.codecentric.boot.admin.registry.StatusUpdater.java

/**
 * The StatusUpdater is responsible for updatig the status of all or a single application querying
 * the healthUrl.
 *
 * @author Johannes Edmeier
 */

From source file org.cloudfoundry.identity.uaa.scim.event.ScimEventPublisher.java

public class ScimEventPublisher implements ApplicationEventPublisherAware {
    private ApplicationEventPublisher publisher;

    @Override
    public void setApplicationEventPublisher(ApplicationEventPublisher applicationEventPublisher) {
        this.publisher = applicationEventPublisher;

From source file de.codecentric.boot.admin.registry.ApplicationRegistry.java

    private final ApplicationStore store;
    private final ApplicationIdGenerator generator;

    public ApplicationRegistry(ApplicationStore store, ApplicationIdGenerator generator) {
        this.store = store;
        this.generator = generator;

From source file springfox.documentation.spring.web.ObjectMapperConfigurer.java

public class ObjectMapperConfigurer implements BeanPostProcessor, ApplicationEventPublisherAware {

    private ApplicationEventPublisher applicationEventPublisher;

    @Override
    public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {

From source file org.jahia.modules.example.settings.SettingsListener.java

/**
 * Listener to propagate settings info among cluster nodes
 */
public class SettingsListener extends DefaultEventListener
        implements ExternalEventListener, ApplicationEventPublisherAware {
    private static final Logger LOGGER = LoggerFactory.getLogger(SettingsListener.class);

From source file org.jahia.modules.saml2.admin.SAML2SettingsListener.java

/**
 * Listener to propagate settings info among cluster nodes
 */
public class SAML2SettingsListener extends DefaultEventListener
        implements ExternalEventListener, ApplicationEventPublisherAware {
    private static final Logger LOGGER = LoggerFactory.getLogger(SAML2SettingsListener.class);

From source file com.deep.two.authority.impl.FareAbstractSessionFixationProtection.java

/**
 * A base class for performing session fixation protection.
 * 
 * @author Rob Winch
 * @since 3.2
 */

From source file nats.client.spring.NatsFactoryBean.java

/**
 * @author Mike Heath <elcapo@gmail.com>
 */
public class NatsFactoryBean implements FactoryBean<Nats>, DisposableBean, ApplicationEventPublisherAware {

    private static final Logger LOGGER = LoggerFactory.getLogger(NatsFactoryBean.class);

From source file org.zenoss.zep.rest.ConfigResource.java

@Path("1.0/config")
public class ConfigResource implements ApplicationEventPublisherAware {

    //private static final Logger logger = LoggerFactory.getLogger(ConfigResource.class);
    private ConfigDao configDao;
    private EventDetailsConfigDao detailsConfigDao;

From source file io.twipple.springframework.data.clusterpoint.core.ClusterpointTemplate.java

/**
 * Primary implementation of {@link ClusterpointOperations}.
 *
 * @author Olegs Briska
 */
public class ClusterpointTemplate implements ClusterpointOperations, ApplicationEventPublisherAware {