com.ksoot.common.spring.boot.BeanName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-commons Show documentation
Show all versions of spring-boot-commons Show documentation
Commons Spring boot components and Utilities
The newest version!
package com.ksoot.common.spring.boot;
import lombok.experimental.UtilityClass;
import org.springframework.context.support.AbstractApplicationContext;
/** Autoconfiguration BeanName names */
@UtilityClass
public final class BeanName {
public static final String APPLICATION_TASK_EXECUTOR_BEAN_NAME = "applicationTaskExecutor";
public static final String SCHEDULED_TASK_EXECUTOR_BEAN_NAME = "scheduledTaskExecutor";
public static final String APPLICATION_EVENT_MULTICASTER_BEAN_NAME =
AbstractApplicationContext.APPLICATION_EVENT_MULTICASTER_BEAN_NAME;
public static final String SECURITY_CONFIGURATION_BEAN_NAME = "securityConfiguration";
public static final String WEB_CONFIGURER_BEAN_NAME = "webConfigurer";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy