BAEL-3375 Working with Dates before Java 8

This commit is contained in:
Laurentiu
2019-10-31 21:18:02 +02:00
parent db85c8f275
commit 7aa0cef657
20517 changed files with 1643762 additions and 0 deletions
@@ -0,0 +1,10 @@
package com.baeldung.lambda;
import com.amazonaws.services.lambda.runtime.Context;
public class LambdaMethodHandler {
public String handleRequest(String input, Context context) {
context.getLogger().log("Input: " + input);
return "Hello World - " + input;
}
}