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

com.manywho.sdk.services.servers.lambda.LambdaContext Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package com.manywho.sdk.services.servers.lambda;

import com.manywho.sdk.api.security.AuthenticatedWho;

public class LambdaContext {
    private static ThreadLocal user = new ThreadLocal<>();

    public static AuthenticatedWho getUser() {
        return user.get();
    }

    public static void setUser(AuthenticatedWho user) {
        LambdaContext.user.set(user);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy