fixed serializability of TrackingConnectorInfo

This commit is contained in:
Axel Uhl
2020-09-08 15:53:12 +02:00
parent 1dd362a1ca
commit 439b1edc84
3 changed files with 6 additions and 3 deletions
@@ -1,11 +1,11 @@
package com.sap.sailing.domain.common.tracking;
import java.io.Serializable;
/**
* Identifies the tracking technology used for a TrackedRace.
*
* TODO This must go away. We paid great attention keeping the domain independent of connectors. This enumeration type kills that whole idea.
*/
public interface TrackingConnectorType {
public interface TrackingConnectorType extends Serializable {
String name();
default String getDefaultUrl() {