Skip to content

Instantly share code, notes, and snippets.

@jaocamp
Last active August 23, 2018 03:44
Show Gist options
  • Save jaocamp/06e6d3d365ce58a76f12023a681494ab to your computer and use it in GitHub Desktop.
Save jaocamp/06e6d3d365ce58a76f12023a681494ab to your computer and use it in GitHub Desktop.
CQRS e Event Sourcing com Axon Framework e Spring Boot - BankAccountRemovedEvent.java
package br.com.coderef.event;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.ToString;
@Getter
@ToString
@AllArgsConstructor
public class BankAccountRemovedEvent {
private String id;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment