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

com.algorithmia.client.SimpleAuth Maven / Gradle / Ivy

The newest version!
package com.algorithmia.client;

/**
 * An Auth implementation for the Algorithmia Simple Auth API Key
 */
public final class SimpleAuth extends Auth {
    String apiKey;

    public SimpleAuth(String apiKey) {
        this.apiKey = apiKey;
    }

    @Override
    protected void authenticateRequest(HttpRequest request) {
        request.addHeader("Authorization", "Simple " + this.apiKey);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy