Selaa lähdekoodia

Added commented-out method that will eventually notify of schedule changes.

peter_backlund 17 vuotta sitten
vanhempi
commit
a2c4ce9af8

+ 4
- 0
dddsample/tracking/core/src/main/java/se/citerus/dddsample/tracking/core/application/event/SystemEvents.java Näytä tiedosto

@@ -2,6 +2,7 @@ package se.citerus.dddsample.tracking.core.application.event;
2 2
 
3 3
 import se.citerus.dddsample.tracking.core.domain.model.cargo.Cargo;
4 4
 import se.citerus.dddsample.tracking.core.domain.model.handling.HandlingEvent;
5
+import se.citerus.dddsample.tracking.core.domain.model.voyage.Voyage;
5 6
 
6 7
 /**
7 8
  * This interface provides a way to let other parts
@@ -26,4 +27,7 @@ public interface SystemEvents {
26 27
    */
27 28
   void notifyOfCargoUpdate(Cargo cargo);
28 29
 
30
+  // TODO
31
+  //void notifyOfScheduleUpdate(Voyage voyage);
32
+
29 33
 }