com.iprogrammerr.gentle.request.template.AuthorizationHeader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gentle-request Show documentation
Show all versions of gentle-request Show documentation
Compact library for creating and reading http requests.
The newest version!
package com.iprogrammerr.gentle.request.template;
import com.iprogrammerr.gentle.request.HttpHeader;
public final class AuthorizationHeader extends HeaderEnvelope {
public AuthorizationHeader(String value) {
super(new HttpHeader("Authorization", value));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy