
br.com.moip.auth.OAuth Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-java Show documentation
Show all versions of sdk-java Show documentation
Java SDK for Moip APIs integration
The newest version!
package br.com.moip.auth;
import java.net.HttpURLConnection;
public class OAuth implements Authentication {
private final String accessToken;
public OAuth(String accessToken) {
this.accessToken = accessToken;
}
public String getAccessToken() { return accessToken; }
public void authenticate(HttpURLConnection connection) {
connection.addRequestProperty("Authorization", "OAuth " + accessToken);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy