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

com.liveperson.faas.security.AuthSignatureBuilder Maven / Gradle / Ivy

Go to download

Functions client for invoking lambdas via the eventsource gateway (a.k.a Asgard)

There is a newer version: 1.2.3
Show newest version
package com.liveperson.faas.security;

import com.liveperson.faas.exception.TokenGenerationException;

/**
 * Generates a header for authentication purposes on other systems
 *
 * @author sschwarz
 */
public interface AuthSignatureBuilder {

    /**
     * Generate authorization header string
     * @throws TokenGenerationException when token generation fails
     * @return the authorization header
     */
    String getAuthHeader() throws TokenGenerationException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy