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.
1 parent b27025a commit 5a6db2fCopy full SHA for 5a6db2f
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