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

io.github.ninobomba.commons.spring.events.ao.ApplicationShutdownEvent Maven / Gradle / Ivy

The newest version!
package io.github.ninobomba.commons.spring.events.ao;

import org.springframework.context.ApplicationEvent;

import java.time.Clock;


public class ApplicationShutdownEvent extends ApplicationEvent {

	private final String message;

	public ApplicationShutdownEvent ( Object source, Clock clock, String message ) {
		super ( source, clock );
		this.message = message;
	}

	public ApplicationShutdownEvent ( Object source, String message ) {
		super ( source );
		this.message = message;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy