mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-16 00:21:19 +00:00
46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
package {{invokerPackage}}.auth;
|
|
|
|
import {{invokerPackage}}.Pair;
|
|
|
|
import com.migcomponents.migbase64.Base64;
|
|
|
|
import java.util.Map;
|
|
import java.util.List;
|
|
|
|
import java.io.UnsupportedEncodingException;
|
|
|
|
{{>generatedAnnotation}}
|
|
public class HttpBasicAuth implements Authentication {
|
|
private String username;
|
|
private String password;
|
|
|
|
public String getUsername() {
|
|
return username;
|
|
}
|
|
|
|
public void setUsername(String username) {
|
|
this.username = username;
|
|
}
|
|
|
|
public String getPassword() {
|
|
return password;
|
|
}
|
|
|
|
public void setPassword(String password) {
|
|
this.password = password;
|
|
}
|
|
|
|
@Override
|
|
public void applyToParams(List<Pair> queryParams, Map<String, String> headerParams) {
|
|
if (username == null && password == null) {
|
|
return;
|
|
}
|
|
String str = (username == null ? "" : username) + ":" + (password == null ? "" : password);
|
|
try {
|
|
headerParams.put("Authorization", "Basic " + Base64.encodeToString(str.getBytes("UTF-8"), false));
|
|
} catch (UnsupportedEncodingException e) {
|
|
throw new RuntimeException(e);
|
|
}
|
|
}
|
|
}
|