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 org.owasp.dependencytrack.dao.LibraryVersionDao.java

@Repository
public class LibraryVersionDao implements ApplicationEventPublisherAware {

    /**
     * Setup logger
     */

From source file cz.muni.fi.editor.services.api.requests.RequestServiceImpl.java

/**
 * Created by Dominik Szalai - emptulik at gmail.com on 24.8.2016.
 */
@Log4j2
@Service
public class RequestServiceImpl implements RequestService, ApplicationEventPublisherAware {

From source file org.zenoss.zep.impl.Application.java

/**
 * Represents core application logic for ZEP, including the scheduled aging and
 * purging of events.
 */
public class Application
        implements ApplicationEventPublisherAware, ApplicationContextAware, ApplicationListener<ApplicationEvent> {

From source file springacltutorial.infrastructure.MyMethodSecurityInterceptor.java

/**
 * forked AbstractSecurityInterceptor in order to use security identities
 * overrided by runasmanager at authorization before method invocations.
 */
public class MyMethodSecurityInterceptor
        implements InitializingBean, ApplicationEventPublisherAware, MessageSourceAware, MethodInterceptor {

From source file com.codecrate.shard.ui.view.ObjectManagerView.java

public class ObjectManagerView extends AbstractView implements ApplicationEventPublisherAware {
    private static final boolean SINGLE_COLUMN_SORT = false;
    private static final Matcher ALWAYS_MATCH_MATCHER = new AlwaysMatchMatcher();

    private JPanel quickSearchPanel;
    private SearchOnPauseJTextField quickSearchInput;

From source file pl.exsio.frameset.vaadin.ui.support.component.data.common.DataComponent.java

/**
 *
 * @author exsio
 */
public abstract class DataComponent<F extends Object, C extends Container, I extends Item, DC extends Component, CFG extends DataConfig>
        extends InitializableVerticalLayout implements ApplicationEventPublisherAware {

From source file de.thm.arsnova.services.QuestionService.java

@Service
public class QuestionService implements IQuestionService, ApplicationEventPublisherAware {

    @Autowired
    private IDatabaseDao databaseDao;

From source file org.openbaton.nfvo.vnfm_reg.VnfmManager.java

/**
 * Created by lto on 08/07/15.
 */
@Service
@Scope
@Order(value = (Ordered.LOWEST_PRECEDENCE - 10)) // in order to be the second to last

From source file com._4dconcept.springframework.data.marklogic.core.MarklogicTemplate.java

/**
 * Primary implementation of {@link MarklogicOperations}.
 *
 * @author Stphane Toussaint
 */
public class MarklogicTemplate implements MarklogicOperations, ApplicationEventPublisherAware {

From source file de.thm.arsnova.dao.CouchDBDao.java

@Component("databaseDao")
public class CouchDBDao implements IDatabaseDao, ApplicationEventPublisherAware {

    @Autowired
    private ISessionService sessionService;