java/com.sap.sailing.domain.persistence/src/com/sap/sailing/domain/persistence/impl/CollectionNames.java
... ...
@@ -2,6 +2,8 @@ package com.sap.sailing.domain.persistence.impl;
2 2
3 3
import com.sap.sailing.domain.base.RaceDefinition;
4 4
import com.sap.sailing.domain.common.tracking.GPSFix;
5
+import com.sap.sailing.domain.maneuverhash.ManeuverRaceFingerprint;
6
+import com.sap.sailing.domain.markpassinghash.MarkPassingRaceFingerprint;
5 7
import com.sap.sailing.domain.tracking.RaceTrackingConnectivityParameters;
6 8
7 9
/**
... ...
@@ -123,13 +125,12 @@ public enum CollectionNames {
123 125
ANNIVERSARIES,
124 126
125 127
/**
126
- * Contains the Hashes for the {@link MarkPassingHashFingerprint}
128
+ * Contains the hashes for the {@link MarkPassingRaceFingerprint} and the mark passings for those races
127 129
*/
128 130
MARKPASSINGS,
131
+
129 132
/**
130
- * Contains the Hashes for the
133
+ * Contains the hashes for the {@link ManeuverRaceFingerprint} and the maneuvers for those races
131 134
*/
132
-
133 135
MANEUVERS;
134
-
135 136
}