Skip to content

Commit

Permalink
Merge pull request #105 from de4a-wp5/iteration2-dev
Browse files Browse the repository at this point in the history
Iteration2 dev
  • Loading branch information
phax authored Aug 19, 2022
2 parents 9c97c94 + 8efe080 commit 0fe3e87
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
.settings/
target/
phase4-dumps/
ph/

#Ignore out of scope project modules
.idea/
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,8 @@ Once you have deployed the `war` file, there are several **checks to ensure that

# News and Noteworthy

* v0.2.4 - 2022-08-19
* Fixed a Spring problem with the `/service/ial` APIs when run in a Docker container (same name of resolved method)
* v0.2.3 - 2022-08-18
* The `/service/ial` queries no longer require the `application/xml` Content Type
* Updated the Iteration 1 code bindings to avoid conflicting paths (de4a-iem 0.1.13)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@echo off

:: The version to release
set VER=0.2.3
set VER=0.2.4

cd de4a-connector
docker build --pull -t de4a/connector:%VER% .
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class ServiceController
private ServiceUtils serviceUtils;

@GetMapping (value = "/ial/{cot}", produces = MediaType.APPLICATION_XML_VALUE)
public ResponseEntity <byte []> lookupRoutingInformation (@Valid @PathVariable @NotNull final String cot)
public ResponseEntity <byte []> callIalCot (@Valid @PathVariable @NotNull final String cot)
{
if (LOGGER.isInfoEnabled ())
LOGGER.info ("Request to API '/service/ial/" + cot + "' received");
Expand All @@ -64,8 +64,8 @@ public class ServiceController
}

@GetMapping (value = "/ial/{cot}/{atu}", produces = MediaType.APPLICATION_XML_VALUE)
public ResponseEntity <byte []> lookupRoutingInformation (@Valid @PathVariable @NotNull final String cot,
@Valid @PathVariable @NotNull final String atu)
public ResponseEntity <byte []> callIalCotAtu (@Valid @PathVariable @NotNull final String cot,
@Valid @PathVariable @NotNull final String atu)
{
if (LOGGER.isInfoEnabled ())
LOGGER.info ("Request to API '/service/ial/" + cot + "/" + atu + "' received");
Expand Down

0 comments on commit 0fe3e87

Please sign in to comment.