import project

This commit is contained in:
Fabio Scotto di Santolo
2023-10-01 14:26:53 +02:00
parent 007b7f2dcc
commit 82e0977599
30 changed files with 2066 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
package org.acme;
import java.io.Serializable;
public interface CollectEvent extends Serializable {
Type getType();
enum Type {
CREATION, UPDATE, DELETE;
}
}