All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
cn.afterturn.easypoi.wps.entity.resreq.WpsConvertResponse Maven / Gradle / Ivy
package cn.afterturn.easypoi.wps.entity.resreq;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.util.MultiValueMap;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* @author JueYue
* @date 2021-05-21-5-25
* @since 1.0
*/
public class WpsConvertResponse extends WpsResponse implements Serializable {
// keys
private final static String MSG_KEY = "msg";
private final static String STATUS_KEY = "status";
private final static String CODE_KEY = "code";
private final static String DATA_KEY = "data";
// msg
private final static String SUCCESS_MSG = "ok";
// value
private final static String SUCCESS_VALUE = "success";
/**
* 请求成功,并返回请求结果集
*
* @param data
* 返回到客户端的对象
* @return Spring mvc ResponseEntity
*/
public static ResponseEntity success(Map data, String msg) {
return getObjectResponseEntity(data, msg);
}
public static ResponseEntity success(String msg) {
Map result = new HashMap(){
{
put(STATUS_KEY, SUCCESS_VALUE);
put(MSG_KEY, msg);
put(CODE_KEY, HttpStatus.OK.value());
}
};
return getEntity(result);
}
public static ResponseEntity successOk() {
Map result = new HashMap(){
{
put(STATUS_KEY, SUCCESS_VALUE);
put(MSG_KEY, SUCCESS_MSG);
put(CODE_KEY, HttpStatus.OK.value());
}
};
return getEntity(result);
}
/**
* 请求成功,并返回请求结果集
*
* @param data
* 返回到客户端的对象
* @return Spring mvc ResponseEntity
*/
public static ResponseEntity success(Map data) {
return getObjectResponseEntity(data, SUCCESS_MSG);
}
public static ResponseEntity success(Object data) {
Map result = new HashMap(){
{
put(STATUS_KEY, SUCCESS_VALUE);
put(MSG_KEY, SUCCESS_MSG);
put(CODE_KEY, HttpStatus.OK.value());
put(DATA_KEY,data);
}
};
return getEntity(result);
}
public static ResponseEntity success(byte[] data, String msg) {
Map result = new HashMap(){
{
put(STATUS_KEY, SUCCESS_VALUE);
put(MSG_KEY, msg);
put(CODE_KEY, HttpStatus.OK.value());
put(DATA_KEY,data);
}
};
return getEntity(result);
}
public static ResponseEntity success(boolean data, String msg) {
Map result = new HashMap(){
{
put(STATUS_KEY, SUCCESS_VALUE);
put(MSG_KEY, msg);
put(CODE_KEY, HttpStatus.OK.value());
put(DATA_KEY,data);
}
};
return getEntity(result);
}
public static ResponseEntity bad(String msg) {
Map result = new HashMap(){
{
put(STATUS_KEY, SUCCESS_VALUE);
put(MSG_KEY, msg);
put(CODE_KEY, HttpStatus.BAD_REQUEST.value());
}
};
return getEntity(result);
}
private static ResponseEntity getObjectResponseEntity(Map data, String msg) {
Map result = new HashMap(){
{
put(STATUS_KEY, SUCCESS_VALUE);
put(MSG_KEY, msg);
put(CODE_KEY, HttpStatus.OK.value());
for (Entry entry : data.entrySet()) {
put(entry.getKey(),entry.getValue());
}
}
};
return getEntity(result);
}
private static ResponseEntity getEntity(Object body) {
List contentType = new ArrayList(){
{
add("application/json;charset=utf-8");
}
};
MultiValueMap headers = new HttpHeaders(){
{
put("Content-Type", contentType);
}
};
return new ResponseEntity<>(body, headers, HttpStatus.OK);
}
}