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

br.com.cefis.authentication.TokenAuth Maven / Gradle / Ivy

The newest version!
package br.com.cefis.authentication;

import java.net.HttpURLConnection;

public class TokenAuth implements Authentication {
	private final String token;

	public TokenAuth(String token) {
		this.token = token;
	}

	public String getToken() {
		return token;
	}

	public void authenticate(HttpURLConnection connection) {
		connection.setRequestProperty("Authorization", token);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy