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

io.castled.pubsub.registry.ExternalAppUpdatedMessage Maven / Gradle / Ivy

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

import io.castled.pubsub.MessageType;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

@Getter
@Setter
@NoArgsConstructor
public class ExternalAppUpdatedMessage extends Message {

    private Long appId;

    public ExternalAppUpdatedMessage(Long appId) {
        super(MessageType.EXTERNAL_APP_UPDATED);
        this.appId = appId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy