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

com.aeontronix.enhancedmule.tools.authentication.AuthenticationProviderBearerTokenImpl Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha4
Show newest version
/*
 * Copyright (c) Aeontronix 2020
 */

package com.aeontronix.enhancedmule.tools.authentication;

import com.aeontronix.enhancedmule.tools.util.HttpException;
import com.aeontronix.enhancedmule.tools.util.HttpHelper;

public class AuthenticationProviderBearerTokenImpl extends AuthenticationProvider {
    private String bearer;

    public AuthenticationProviderBearerTokenImpl(String bearer) {
        this.bearer = bearer;
    }

    @Override
    public String getBearerToken(HttpHelper httpHelper) throws HttpException {
        return bearer;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy