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

com.mnubo.java.sdk.client.services.StaticCredentialHandler Maven / Gradle / Ivy

package com.mnubo.java.sdk.client.services;

class StaticCredentialHandler implements CredentialHandler {

    private final String autorizationToken;

    StaticCredentialHandler(String token) {
        this.autorizationToken = token;
    }

    public String getAutorizationToken() {
        return "Bearer " + autorizationToken;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy