()
| 82 | } |
| 83 | |
| 84 | private Map<String, @Nullable Object> toJson() { |
| 85 | Map<String, @Nullable Object> toReturn = new TreeMap<>(); |
| 86 | toReturn.put("id", getId()); |
| 87 | toReturn.put("lastStarted", getLastStarted()); |
| 88 | toReturn.put("session", getSession()); |
| 89 | toReturn.put("stereotype", getStereotype()); |
| 90 | return unmodifiableMap(toReturn); |
| 91 | } |
| 92 | |
| 93 | public SlotId getId() { |
| 94 | return id; |
nothing calls this directly
no test coverage detected