Skip to content

Instantly share code, notes, and snippets.

@rjozefowicz
Last active January 31, 2021 10:02
Show Gist options
  • Save rjozefowicz/010d62f3751b288a6d54bb9558e8a2c4 to your computer and use it in GitHub Desktop.
Save rjozefowicz/010d62f3751b288a6d54bb9558e8a2c4 to your computer and use it in GitHub Desktop.
Spring Cloud Function AWS - StacjaIT - 31.01.2021
@rjozefowicz
Copy link
Author

public class UUIDGenerator implements RequestHandler<Void, String> {

    @Override
    public String handleRequest(Void unused, Context context) {
        return UUID.randomUUID().toString();
    }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment