-
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.
feature/heightmap-scanner; persist coordinateXYZ in specific columns …
…+ entity fields; configured logging (dev)
- Loading branch information
Showing
17 changed files
with
179 additions
and
42 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
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
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
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
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
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
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
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
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
10 changes: 10 additions & 0 deletions
10
src/main/java/com/recom/event/listener/generic/MapLocatedDto.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 |
---|---|---|
@@ -1,4 +1,14 @@ | ||
package com.recom.event.listener.generic; | ||
|
||
import lombok.NonNull; | ||
|
||
import java.math.BigDecimal; | ||
import java.util.List; | ||
|
||
public interface MapLocatedDto { | ||
|
||
List<BigDecimal> getCoordinates(); | ||
|
||
void setCoordinates(@NonNull final List<BigDecimal> coordinates); | ||
|
||
} |
20 changes: 20 additions & 0 deletions
20
src/main/java/com/recom/event/listener/generic/MapLocatedEntity.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 |
---|---|---|
@@ -1,10 +1,30 @@ | ||
package com.recom.event.listener.generic; | ||
|
||
import lombok.NonNull; | ||
import org.springframework.lang.Nullable; | ||
|
||
import java.math.BigDecimal; | ||
|
||
public interface MapLocatedEntity { | ||
|
||
void setMapName(@Nullable final String mapName); | ||
|
||
String getMapName(); | ||
|
||
String getCoordinates(); | ||
|
||
void setCoordinates(@NonNull final String coordinates); | ||
|
||
BigDecimal getCoordinateX(); | ||
|
||
void setCoordinateX(@NonNull final BigDecimal coordinateX); | ||
|
||
BigDecimal getCoordinateY(); | ||
|
||
void setCoordinateY(@NonNull final BigDecimal coordinateY); | ||
|
||
BigDecimal getCoordinateZ(); | ||
|
||
void setCoordinateZ(@NonNull final BigDecimal coordinateZ); | ||
|
||
} |
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
Oops, something went wrong.