We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b27025a + 5a6db2f commit b346e86Copy full SHA for b346e86
src/main/java/edu/ie3/datamodel/models/input/container/InputContainer.java
@@ -6,10 +6,11 @@
6
package edu.ie3.datamodel.models.input.container;
7
8
import edu.ie3.datamodel.models.input.InputEntity;
9
+import java.io.Serializable;
10
import java.util.List;
11
12
/** Represents an aggregation of different entities */
-public interface InputContainer<T extends InputEntity> {
13
+public interface InputContainer<T extends InputEntity> extends Serializable {
14
15
/** @return unmodifiable List of all entities */
16
List<T> allEntitiesAsList();
0 commit comments