All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.amazon.lambda.http.DefaultLambdaAuthenticationRequest Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package io.quarkus.amazon.lambda.http;

import com.amazonaws.services.lambda.runtime.events.APIGatewayV2HTTPEvent;

import io.quarkus.security.identity.request.BaseAuthenticationRequest;

/**
 * This will execute if and only if there is no identity after invoking a LambdaAuthenticationRequest
 */
final public class DefaultLambdaAuthenticationRequest extends BaseAuthenticationRequest {
    private APIGatewayV2HTTPEvent event;

    public DefaultLambdaAuthenticationRequest(APIGatewayV2HTTPEvent event) {
        this.event = event;
    }

    public APIGatewayV2HTTPEvent getEvent() {
        return event;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy