public class HttpRespContent extends Object
| Modifier and Type | Method and Description |
|---|---|
byte[] |
getContent() |
String |
getContentType() |
int |
getStatusCode() |
boolean |
isBase64() |
boolean |
isOK() |
static HttpRespContent |
ofError(int statusCode,
String contentType,
boolean base64,
byte[] content) |
static HttpRespContent |
ofError(int statusCode,
String contentType,
byte[] content) |
static HttpRespContent |
ofOk(String contentType,
boolean base64,
byte[] content) |
static HttpRespContent |
ofOk(String contentType,
byte[] content) |
public static HttpRespContent ofOk(String contentType, byte[] content)
public static HttpRespContent ofOk(String contentType, boolean base64, byte[] content)
public static HttpRespContent ofError(int statusCode, String contentType, byte[] content)
public static HttpRespContent ofError(int statusCode, String contentType, boolean base64, byte[] content)
public boolean isOK()
public int getStatusCode()
public String getContentType()
public boolean isBase64()
public byte[] getContent()
Copyright © 2023. All rights reserved.