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

com.github.charlemaznable.bunny.rabbit.spring.BunnyDeployedEvent Maven / Gradle / Ivy

Go to download

Bunny rabbits will skip hand-in-hand with baby lambs across sunny green meadows.

There is a newer version: 2023.0.4
Show newest version
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