java/com.sap.sailing.domain.common/src/com/sap/sailing/domain/common/impl/DegreeBearingImpl.java
... ...
@@ -23,11 +23,13 @@ public class DegreeBearingImpl extends AbstractBearing implements Bearing {
23 23
private static final long serialVersionUID = -8045400378221073451L;
24 24
private final double bearingDeg;
25 25
26
+ @Deprecated
26 27
public DegreeBearingImpl(double bearingDeg) {
27 28
super();
28 29
this.bearingDeg = bearingDeg - 360 * (int) (bearingDeg / 360.);
29 30
}
30 31
32
+ @Deprecated
31 33
@Override
32 34
public double getDegrees() {
33 35
return bearingDeg;
java/com.sap.sailing.domain.common/src/com/sap/sailing/domain/common/media/MediaTrack.java
... ...
@@ -35,7 +35,17 @@ public class MediaTrack implements Serializable, WithQualifiedObjectIdentifier {
35 35
*/
36 36
@Deprecated
37 37
public enum Status {
38
- UNDEFINED('?'), CANNOT_PLAY('-'), NOT_REACHABLE('#'), REACHABLE('+');
38
+ @Deprecated
39
+ UNDEFINED('?'),
40
+
41
+ @Deprecated
42
+ CANNOT_PLAY('-'),
43
+
44
+ @Deprecated
45
+ NOT_REACHABLE('#'),
46
+
47
+ @Deprecated
48
+ REACHABLE('+');
39 49
40 50
private final char symbol;
41 51
... ...
@@ -43,6 +53,7 @@ public class MediaTrack implements Serializable, WithQualifiedObjectIdentifier {
43 53
this.symbol = symbol;
44 54
}
45 55
56
+ @Deprecated
46 57
public String toString() {
47 58
return String.valueOf(this.symbol);
48 59
}
java/com.sap.sailing.windestimation.lab/src/com/sap/sailing/windestimation/integration/TrackedRacePreprocessingPipelineImpl.java
... ...
@@ -42,10 +42,12 @@ public class TrackedRacePreprocessingPipelineImpl
42 42
private final RaceElementsFilteringPreprocessingPipelineImpl raceElementsFilteringPreprocessingPipeline = new RaceElementsFilteringPreprocessingPipelineImpl(
43 43
new CompleteManeuverCurveWithEstimationDataToManeuverForEstimationTransformer());
44 44
45
+ @Deprecated
45 46
public TrackedRacePreprocessingPipelineImpl(PolarDataService polarDataService) {
46 47
this.polarDataService = polarDataService;
47 48
}
48 49
50
+ @Deprecated
49 51
@Override
50 52
public RaceWithEstimationData<ManeuverForEstimation> preprocessInput(TrackedRace element) {
51 53
List<CompetitorTrackWithEstimationData<CompleteManeuverCurveWithEstimationData>> competitorTracks = getCompetitorTracksWithManeuverEstimationData(
... ...
@@ -58,6 +60,7 @@ public class TrackedRacePreprocessingPipelineImpl
58 60
return preprocessedRace;
59 61
}
60 62
63
+ @Deprecated
61 64
public List<CompetitorTrackWithEstimationData<CompleteManeuverCurveWithEstimationData>> getCompetitorTracksWithManeuverEstimationData(
62 65
TrackedRace trackedRace) {
63 66
Iterable<Competitor> competitors = trackedRace.getRace().getCompetitors();