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

com.github.rexsheng.springboot.faster.system.locale.domain.LocaleRefreshEvent Maven / Gradle / Ivy

The newest version!
package com.github.rexsheng.springboot.faster.system.locale.domain;

import org.springframework.context.ApplicationEvent;
import org.springframework.util.StringUtils;

public class LocaleRefreshEvent extends ApplicationEvent {

    public LocaleRefreshEvent() {
        super("");
    }

    public LocaleRefreshEvent(String locale) {
        super(StringUtils.hasText(locale)?locale:"");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy