aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs183/442425/EntityMongoController.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs183/442425/EntityMongoController.java')
-rw-r--r--tests/bugs183/442425/EntityMongoController.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/bugs183/442425/EntityMongoController.java b/tests/bugs183/442425/EntityMongoController.java
new file mode 100644
index 000000000..345f32043
--- /dev/null
+++ b/tests/bugs183/442425/EntityMongoController.java
@@ -0,0 +1,8 @@
+package de.scrum_master.app;
+
+public class EntityMongoController<T> implements IEntityController<T> {
+ private T entity;
+
+ public void setEntity(T entity) { this.entity = entity; }
+ public T getEntity() { return entity; }
+}