All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.lit.commons.event.AppStartedEvent Maven / Gradle / Ivy

The newest version!
package com.github.lit.commons.event;

import lombok.Getter;
import lombok.Setter;
import org.springframework.context.ApplicationContext;
import org.springframework.context.event.ContextRefreshedEvent;

/**
 * User : liulu
 * Date : 2017/8/9 22:10
 * version $Id: AppStartedEvent.java, v 0.1 Exp $
 */
@Getter
@Setter
public class AppStartedEvent {

    private ContextRefreshedEvent event;

    public ApplicationContext getApplicationContext() {
        return event == null ? null : event.getApplicationContext();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy