-
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.
- Loading branch information
Showing
71 changed files
with
343 additions
and
261 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
*/ | ||
@Data | ||
@Table("sepulkas") | ||
public class SepulkaRec { | ||
public class SepulkaEdge { | ||
@Id | ||
String id; | ||
|
||
|
11 changes: 0 additions & 11 deletions
11
apps/sepuling/src/main/java/smecalculus/bezmen/storage/SepulkaRecMapper.java
This file was deleted.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
apps/sepuling/src/main/java/smecalculus/bezmen/storage/SepulkaStateMapper.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 smecalculus.bezmen.storage; | ||
|
||
import org.mapstruct.Mapper; | ||
import smecalculus.bezmen.core.Sepulka; | ||
|
||
@Mapper | ||
public interface SepulkaStateMapper { | ||
SepulkaEdge toEdge(Sepulka sepulka); | ||
|
||
Sepulka toDomain(SepulkaEdge sepulkaEdge); | ||
} |
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
4 changes: 2 additions & 2 deletions
4
apps/sepuling/src/main/java/smecalculus/bezmen/storage/springdata/SepulkaRepository.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,6 +1,6 @@ | ||
package smecalculus.bezmen.storage.springdata; | ||
|
||
import org.springframework.data.repository.CrudRepository; | ||
import smecalculus.bezmen.storage.SepulkaRec; | ||
import smecalculus.bezmen.storage.SepulkaEdge; | ||
|
||
public interface SepulkaRepository extends CrudRepository<SepulkaRec, String> {} | ||
public interface SepulkaRepository extends CrudRepository<SepulkaEdge, String> {} |
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
3 changes: 0 additions & 3 deletions
3
apps/sepuling/src/test/java/smecalculus/bezmen/messaging/SepulkaClientSpringWebIT.java
This file was deleted.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
apps/sepuling/src/test/java/smecalculus/bezmen/messaging/SepulkaClientSpringWebTestIT.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,3 @@ | ||
package smecalculus.bezmen.messaging; | ||
|
||
public class SepulkaClientSpringWebTestIT extends SepulkaClientIT {} |
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
2 changes: 1 addition & 1 deletion
2
libs/abstraction-client/src/main/java/smecalculus/bezmen/messaging/SepulkaClient.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,5 +1,5 @@ | ||
package smecalculus.bezmen.messaging; | ||
|
||
public interface SepulkaClient { | ||
SepulkaNewResponseMsg register(SepulkaNewRequestMsg request); | ||
SepulkaNewResponseEdge register(SepulkaNewRequestEdge request); | ||
} |
Oops, something went wrong.