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

cn.aradin.spring.actuator.starter.extension.DefaultOfflineHandler Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
package cn.aradin.spring.actuator.starter.extension;

import org.springframework.context.ApplicationContext;

import lombok.extern.slf4j.Slf4j;

/**
 * The Default Implement Class For Offline Handler
 * @author liudaac
 *
 */
@Slf4j
public class DefaultOfflineHandler implements IOfflineHandler{

	@Override
	public void offline(ApplicationContext context) {
		// TODO Auto-generated method stub
		if (log.isDebugEnabled()) {
			log.debug("DefaultOfflineHandler is Running");
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy