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

io.castled.events.NewInstallationEvent Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package io.castled.events;

import lombok.*;

@Getter
@Setter
@NoArgsConstructor
public class NewInstallationEvent extends CastledEvent {

    private String installationId;

    public NewInstallationEvent(String installationId) {
        super(CastledEventType.NEW_INSTALLATION);
        this.installationId = installationId;
    }

    @Override
    public String entityId() {
        return installationId;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy