aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/trygvis/esper/testing/core/db/PersonBadgeDto.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/io/trygvis/esper/testing/core/db/PersonBadgeDto.java')
-rw-r--r--src/main/java/io/trygvis/esper/testing/core/db/PersonBadgeDto.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/main/java/io/trygvis/esper/testing/core/db/PersonBadgeDto.java b/src/main/java/io/trygvis/esper/testing/core/db/PersonBadgeDto.java
new file mode 100644
index 0000000..5bbe159
--- /dev/null
+++ b/src/main/java/io/trygvis/esper/testing/core/db/PersonBadgeDto.java
@@ -0,0 +1,25 @@
+package io.trygvis.esper.testing.core.db;
+
+import io.trygvis.esper.testing.*;
+import org.joda.time.*;
+
+import java.util.*;
+
+public class PersonBadgeDto extends AbstractEntity {
+ public enum Type {
+ UNBREAKABLE
+ }
+
+ public final UUID person;
+ public final Type type;
+ public final int level;
+ public final int count;
+
+ public PersonBadgeDto(UUID uuid, DateTime createdDate, UUID person, Type type, int level, int count) {
+ super(uuid, createdDate);
+ this.person = person;
+ this.type = type;
+ this.level = level;
+ this.count = count;
+ }
+}