org.reactivecommons.api.domain.Command Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of domain-events-api Show documentation
Show all versions of domain-events-api Show documentation
Abstract your broker with semantic async messages
The newest version!
package org.reactivecommons.api.domain;
import lombok.AllArgsConstructor;
import lombok.Data;
@Data
@AllArgsConstructor
public class Command {
private final String name;
private final String commandId;
private final T data;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy