diff options
author | Christof Rabensteiner <christof.rabensteiner@iaik.tugraz.at> | 2019-09-03 13:06:48 +0200 |
---|---|---|
committer | Christof Rabensteiner <christof.rabensteiner@iaik.tugraz.at> | 2019-09-03 13:06:48 +0200 |
commit | 3b114adee71e1e2477898d55c91cd573f0e48857 (patch) | |
tree | a5ba7afa71747adb6644c019ad939af90aea4cdf /src/main/java/at/gv/egiz/moazs/scheme | |
parent | f6990a4f7cf824b4859ebbf08cbddb2ba2607836 (diff) | |
download | moa-zs-3b114adee71e1e2477898d55c91cd573f0e48857.tar.gz moa-zs-3b114adee71e1e2477898d55c91cd573f0e48857.tar.bz2 moa-zs-3b114adee71e1e2477898d55c91cd573f0e48857.zip |
Rename MzsClient to AppClient
...since it's a client that communicates with the app.
Diffstat (limited to 'src/main/java/at/gv/egiz/moazs/scheme')
3 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/at/gv/egiz/moazs/scheme/MsgResponse.java b/src/main/java/at/gv/egiz/moazs/scheme/MsgResponse.java index f105278..f443594 100644 --- a/src/main/java/at/gv/egiz/moazs/scheme/MsgResponse.java +++ b/src/main/java/at/gv/egiz/moazs/scheme/MsgResponse.java @@ -41,6 +41,6 @@ public abstract class MsgResponse <T> { * @return Deep Copy of response but of "error" type */ public abstract MsgResponse<T> generateError(String text, String code); - public abstract CompletableFuture<Void> sendToMzsClient(Msg2MzsConverter converter, Optional<byte[]> signedStatus, Mzs2AppPortType client); + public abstract CompletableFuture<Void> sendToAppClient(Msg2MzsConverter converter, Optional<byte[]> signedStatus, Mzs2AppPortType client); } diff --git a/src/main/java/at/gv/egiz/moazs/scheme/NotificationResponse.java b/src/main/java/at/gv/egiz/moazs/scheme/NotificationResponse.java index 4e7abae..85e7737 100644 --- a/src/main/java/at/gv/egiz/moazs/scheme/NotificationResponse.java +++ b/src/main/java/at/gv/egiz/moazs/scheme/NotificationResponse.java @@ -74,7 +74,7 @@ public class NotificationResponse extends MsgResponse<DeliveryNotificationType> } @Override - public CompletableFuture<Void> sendToMzsClient(Msg2MzsConverter converter, Optional<byte[]> signedNotification, Mzs2AppPortType client) { + public CompletableFuture<Void> sendToAppClient(Msg2MzsConverter converter, Optional<byte[]> signedNotification, Mzs2AppPortType client) { var mzsNotification = converter.convert(notification, signedNotification); client.forwardNotification(mzsNotification); return CompletableFuture.completedFuture(null); diff --git a/src/main/java/at/gv/egiz/moazs/scheme/RequestStatusResponse.java b/src/main/java/at/gv/egiz/moazs/scheme/RequestStatusResponse.java index 8a4b590..c647103 100644 --- a/src/main/java/at/gv/egiz/moazs/scheme/RequestStatusResponse.java +++ b/src/main/java/at/gv/egiz/moazs/scheme/RequestStatusResponse.java @@ -110,7 +110,7 @@ public class RequestStatusResponse extends MsgResponse<DeliveryRequestStatusType } @Override - public CompletableFuture<Void> sendToMzsClient(Msg2MzsConverter converter, Optional<byte[]> signedStatus, Mzs2AppPortType client) { + public CompletableFuture<Void> sendToAppClient(Msg2MzsConverter converter, Optional<byte[]> signedStatus, Mzs2AppPortType client) { var msgStatus = converter.convert(status, signedStatus); client.forwardStatus(msgStatus); return CompletableFuture.completedFuture(null); |