com.github.charlemaznable.bunny.rabbit.spring.BunnyDeployedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bunny-rabbit Show documentation
Show all versions of bunny-rabbit Show documentation
Bunny rabbits will skip hand-in-hand with baby lambs across sunny green meadows.
package com.github.charlemaznable.bunny.rabbit.spring;
import lombok.Getter;
import lombok.Setter;
import org.springframework.context.ApplicationContext;
import org.springframework.context.event.ApplicationContextEvent;
import java.io.Serial;
@Getter
@Setter
public final class BunnyDeployedEvent extends ApplicationContextEvent {
@Serial
private static final long serialVersionUID = -9044518073740741490L;
private String verticleName;
private String deploymentId;
public BunnyDeployedEvent(ApplicationContext source) {
super(source);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy