com.microsoft.aad.msal4j.IHttpResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.mail.outlook.auth.connector.provider
Show all versions of com.liferay.mail.outlook.auth.connector.provider
Liferay Mail Outlook Auth Connector Provider
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.microsoft.aad.msal4j;
import java.util.List;
import java.util.Map;
/**
* HTTP response from execution of {@link HttpRequest} in {@link IHttpClient}
*/
public interface IHttpResponse {
/**
* @return HTTP response status code.
*/
int statusCode();
/**
* @return HTTP response headers
*/
Map> headers();
/**
* @return HTTP response body
*/
String body();
}