From b6bdf180c777566bbe908303774e53c7d4e099c4 Mon Sep 17 00:00:00 2001 From: Thorsten Ortlepp Date: Tue, 23 Apr 2024 21:15:19 +0200 Subject: project initialization --- .../eu/ortlepp/notificationsender/NotificationHandler.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/main/java/eu/ortlepp/notificationsender/NotificationHandler.java (limited to 'src/main/java/eu/ortlepp/notificationsender') diff --git a/src/main/java/eu/ortlepp/notificationsender/NotificationHandler.java b/src/main/java/eu/ortlepp/notificationsender/NotificationHandler.java new file mode 100644 index 0000000..43e1aa9 --- /dev/null +++ b/src/main/java/eu/ortlepp/notificationsender/NotificationHandler.java @@ -0,0 +1,12 @@ +package eu.ortlepp.notificationsender; + +import com.amazonaws.services.lambda.runtime.Context; +import com.amazonaws.services.lambda.runtime.RequestHandler; + +public class NotificationHandler implements RequestHandler { + + public String handleRequest(String event, Context context) { + return event.toLowerCase(); + } + +} \ No newline at end of file -- cgit v1.2.3