Skip to content
Snippets Groups Projects
Commit ec0188d0 authored by Renan Souza's avatar Renan Souza
Browse files

removing unused file

parent b6f87838
Branches
Tags
1 merge request!6Trusted ibm
package org.opengroup.osdu.util;
import lombok.ToString;
import lombok.extern.java.Log;
import java.io.IOException;
@Log
@ToString
public class GCPHTTPClient extends HTTPClient {
private static String token = null;
@Override
public synchronized String getAccessToken() {
if(token == null) {
try {
token = "Bearer " + JwtTokenUtil.getAccessToken();
} catch (IOException e) {
e.printStackTrace();
}
}
return token;
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment