diff options
Diffstat (limited to 'src/main/java')
| -rw-r--r-- | src/main/java/at/gv/egiz/moazs/App2MzsService.java | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/main/java/at/gv/egiz/moazs/App2MzsService.java b/src/main/java/at/gv/egiz/moazs/App2MzsService.java index 29b75ef..622f1dc 100644 --- a/src/main/java/at/gv/egiz/moazs/App2MzsService.java +++ b/src/main/java/at/gv/egiz/moazs/App2MzsService.java @@ -21,6 +21,7 @@ import static at.gv.zustellung.msg.xsd.DeliveryRequestStatusType.deliveryRequest  import static java.lang.String.format;  import static java.util.concurrent.CompletableFuture.supplyAsync; +//todo : validate Schema in both directions.  @Service  @SchemaValidation(type = SchemaValidation.SchemaValidationType.IN)  public class App2MzsService implements App2MzsPortType { @@ -79,7 +80,7 @@ public class App2MzsService implements App2MzsPortType {          pipeline.processRequest(appDeliveryID);          return repository.getDeliveryRequestStatus(appDeliveryID) -                .orElseThrow(() -> moaZSException("Could not get a response for AppDeliveryID=%s", appDeliveryID)); +                .orElseThrow(() -> moaZSException("Could not get a response for AppDeliveryID=%s.", appDeliveryID));      } | 
