-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update package structure and version number
The package structure for Data Transfer Object (DTO) classes have been updated, moving from 'eddn.data' to 'edpn.intermodulecommunication'. This change organizes code in a more logical, easily maintainable structure. Additionally, the backend-util library version has been updated to 0.2.0-SNAPSHOT, and current project version has been bumped to 1.0.0-SNAPSHOT.
- Loading branch information
1 parent
91cc1bf
commit b9add40
Showing
18 changed files
with
115 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 0 additions & 9 deletions
9
...backend/messageprocessorlib/application/dto/eddn/data/StationArrivalDistanceResponse.java
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
...ava/io/edpn/backend/messageprocessorlib/application/dto/eddn/data/StationDataRequest.java
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
...ckend/messageprocessorlib/application/dto/eddn/data/StationMaxLandingPadSizeResponse.java
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
.../edpn/backend/messageprocessorlib/application/dto/eddn/data/StationPlanetaryResponse.java
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
.../backend/messageprocessorlib/application/dto/eddn/data/StationRequireOdysseyResponse.java
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
...edpn/backend/messageprocessorlib/application/dto/eddn/data/SystemCoordinatesResponse.java
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
...java/io/edpn/backend/messageprocessorlib/application/dto/eddn/data/SystemDataRequest.java
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
.../io/edpn/backend/messageprocessorlib/application/dto/eddn/data/SystemEliteIdResponse.java
This file was deleted.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
...ssorlib/application/dto/edpn/intermodulecommunication/StationArrivalDistanceResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package io.edpn.backend.messageprocessorlib.application.dto.edpn.intermodulecommunication; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
public interface StationArrivalDistanceResponse { | ||
@JsonProperty("stationName") | ||
String stationName(); | ||
|
||
@JsonProperty("systemName") | ||
String systemName(); | ||
|
||
@JsonProperty("arrivalDistance") | ||
double arrivalDistance(); | ||
} |
15 changes: 15 additions & 0 deletions
15
...messageprocessorlib/application/dto/edpn/intermodulecommunication/StationDataRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package io.edpn.backend.messageprocessorlib.application.dto.edpn.intermodulecommunication; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import io.edpn.backend.util.Module; | ||
|
||
public interface StationDataRequest { | ||
@JsonProperty("requestingModule") | ||
Module requestingModule(); | ||
|
||
@JsonProperty("stationName") | ||
String stationName(); | ||
|
||
@JsonProperty("systemName") | ||
String systemName(); | ||
} |
14 changes: 14 additions & 0 deletions
14
...orlib/application/dto/edpn/intermodulecommunication/StationMaxLandingPadSizeResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package io.edpn.backend.messageprocessorlib.application.dto.edpn.intermodulecommunication; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
public interface StationMaxLandingPadSizeResponse { | ||
@JsonProperty("stationName") | ||
String stationName(); | ||
|
||
@JsonProperty("systemName") | ||
String systemName(); | ||
|
||
@JsonProperty("maxLandingPadSize") | ||
String maxLandingPadSize(); | ||
} |
14 changes: 14 additions & 0 deletions
14
...eprocessorlib/application/dto/edpn/intermodulecommunication/StationPlanetaryResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package io.edpn.backend.messageprocessorlib.application.dto.edpn.intermodulecommunication; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
public interface StationPlanetaryResponse { | ||
@JsonProperty("stationName") | ||
String stationName(); | ||
|
||
@JsonProperty("systemName") | ||
String systemName(); | ||
|
||
@JsonProperty("planetary") | ||
boolean planetary(); | ||
} |
14 changes: 14 additions & 0 deletions
14
...essorlib/application/dto/edpn/intermodulecommunication/StationRequireOdysseyResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package io.edpn.backend.messageprocessorlib.application.dto.edpn.intermodulecommunication; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
public interface StationRequireOdysseyResponse { | ||
@JsonProperty("stationName") | ||
String stationName(); | ||
|
||
@JsonProperty("systemName") | ||
String systemName(); | ||
|
||
@JsonProperty("requireOdyssey") | ||
boolean requireOdyssey(); | ||
} |
17 changes: 17 additions & 0 deletions
17
...processorlib/application/dto/edpn/intermodulecommunication/SystemCoordinatesResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package io.edpn.backend.messageprocessorlib.application.dto.edpn.intermodulecommunication; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
public interface SystemCoordinatesResponse { | ||
@JsonProperty("systemName") | ||
String systemName(); | ||
|
||
@JsonProperty("xCoordinate") | ||
double xCoordinate(); | ||
|
||
@JsonProperty("yCoordinate") | ||
double yCoordinate(); | ||
|
||
@JsonProperty("zCoordinate") | ||
double zCoordinate(); | ||
} |
12 changes: 12 additions & 0 deletions
12
.../messageprocessorlib/application/dto/edpn/intermodulecommunication/SystemDataRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package io.edpn.backend.messageprocessorlib.application.dto.edpn.intermodulecommunication; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import io.edpn.backend.util.Module; | ||
|
||
public interface SystemDataRequest { | ||
@JsonProperty("requestingModule") | ||
Module requestingModule(); | ||
|
||
@JsonProperty("systemName") | ||
String systemName(); | ||
} |
11 changes: 11 additions & 0 deletions
11
...sageprocessorlib/application/dto/edpn/intermodulecommunication/SystemEliteIdResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package io.edpn.backend.messageprocessorlib.application.dto.edpn.intermodulecommunication; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
public interface SystemEliteIdResponse { | ||
@JsonProperty("systemName") | ||
String systemName(); | ||
|
||
@JsonProperty("eliteId") | ||
long eliteId(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters