From a6f9108456a202ea58af8ca39928264f0494668f Mon Sep 17 00:00:00 2001 From: vthglyk Date: Thu, 26 Apr 2018 18:12:48 +0300 Subject: [PATCH] Added NotficationMessageResponseSecured --- .../cram/NotificationMessageResponseSecured.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/main/java/eu/h2020/symbiote/core/internal/cram/NotificationMessageResponseSecured.java diff --git a/src/main/java/eu/h2020/symbiote/core/internal/cram/NotificationMessageResponseSecured.java b/src/main/java/eu/h2020/symbiote/core/internal/cram/NotificationMessageResponseSecured.java new file mode 100644 index 0000000..5bc8a55 --- /dev/null +++ b/src/main/java/eu/h2020/symbiote/core/internal/cram/NotificationMessageResponseSecured.java @@ -0,0 +1,16 @@ +package eu.h2020.symbiote.core.internal.cram; + +import eu.h2020.symbiote.core.cci.AbstractResponseSecured; +import eu.h2020.symbiote.core.cci.accessNotificationMessages.NotificationMessage; +import eu.h2020.symbiote.security.communication.payloads.SecurityRequest; + +/** + * POJO including NotificationMessages coming from RAP along with the SecurityRequest. + * @author Vasileios Glykantzis (ICOM) + */ +public class NotificationMessageResponseSecured extends AbstractResponseSecured { + + public NotificationMessageResponseSecured() { + // Needed for Jackson serialization + } +}