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

io.castled.pubsub.registry.UserUpdatedMessage 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 UserUpdatedMessage extends Message {

    private Long userId;

    public UserUpdatedMessage(Long userId) {
        super(MessageType.USER_UPDATED);
        this.userId = userId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy