Package com.independentsoft.graph
Class HttpHeader
java.lang.Object
com.independentsoft.graph.HttpHeader
Represents an HTTP header name-value pair.
HTTP headers are used to pass additional information with requests and responses. This class is used to set custom headers for Microsoft Graph API requests.
- Since:
- 1.0
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.HttpHeader(String name, String value)Constructs an HTTP header with a name and value. -
Method Summary
-
Constructor Details
-
HttpHeader
public HttpHeader()Default constructor. -
HttpHeader
Constructs an HTTP header with a name and value.- Parameters:
name- The header name (e.g., "Content-Type", "Authorization")value- The header value
-
-
Method Details