com.oath.micro.server.events.RemoveEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micro-events Show documentation
Show all versions of micro-events Show documentation
Opinionated rest microservices
package com.oath.micro.server.events;
import lombok.AllArgsConstructor;
import lombok.Getter;
@AllArgsConstructor
public abstract class RemoveEvent{
@Getter
private final T data;
}