com.i2soft.tools.v20240311.Compare Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of i2up-java-sdk Show documentation
Show all versions of i2up-java-sdk Show documentation
Information2 United Data Management Platform SDK for Java
The newest version!
package com.i2soft.tools.v20240311;
import com.i2soft.http.I2Req;
import com.i2soft.http.I2Rs;
import com.i2soft.http.I2softException;
import com.i2soft.http.Response;
import com.i2soft.common.Auth;
import com.i2soft.util.StringMap;
import java.util.Map;
public final class Compare {
/**
* Auth 对象
*/
private final Auth auth;
/**
* 构建一个新对象
*
* @param auth Auth对象
*/
public Compare(Auth auth) {
this.auth = auth;
}
/**
* 1 单体-1 新建
*
* @param args: 参数详见 API 手册
* @return 参数详见 API 手册
* @throws I2softException:
*/
public Map createCompare(StringMap args) throws I2softException {
String url = String.format("%s/compare", auth.cc_url);
Response r = auth.client.post(url, args);
return r.jsonToMap();
}
/**
* 单体-1 修改
*
* @param uuid: uuid
* @param args: 参数详见 API 手册
* @return code, message
* @throws I2softException:
*/
public I2Rs.I2SmpRs modifyCompare(String uuid, StringMap args) throws I2softException {
String url = String.format("%s/compare/%s", auth.cc_url, uuid);
Response r = auth.client.put(url, args);
return r.jsonToObject(I2Rs.I2SmpRs.class);
}
/**
* 1 单体-2 获取单个(包括比较结果)
*
* @param uuid: uuid
* @return 参数详见 API 手册
* @throws I2softException:
*/
public Map describeCompare(String uuid) throws I2softException {
String url = String.format("%s/compare/%s", auth.cc_url, uuid);
Response r = auth.client.get(url, new StringMap());
return r.jsonToMap();
}
/**
* 1 单体-2 获取比较结果详情
*
* @return code, message
* @throws I2softException:
*/
public I2Rs.I2SmpRs listCompareLogs() throws I2softException {
String url = String.format("%s/logs", auth.cc_url);
Response r = auth.client.get(url, new StringMap());
return r.jsonToObject(I2Rs.I2SmpRs.class);
}
/**
* 2 列表-1 获取列表
*
* @param args: 参数详见 API 手册
* @return 参数详见 API 手册
* @throws I2softException:
*/
public Map listCompare(StringMap args) throws I2softException {
String url = String.format("%s/compare", auth.cc_url);
Response r = auth.client.get(url, args);
return r.jsonToMap();
}
/**
* 2 列表-1.1 获取结果列表(周期)
*
* @param uuid: uuid
* @param args: 参数详见 API 手册
* @return 参数详见 API 手册
* @throws I2softException:
*/
public Map listCircleCompareResult(String uuid, StringMap args) throws I2softException {
String url = String.format("%s/compare/%s/result_list", auth.cc_url, uuid);
Response r = auth.client.get(url, args);
return r.jsonToMap();
}
/**
* 2 列表-2 状态
*
* @param args: 参数详见 API 手册
* @return 参数详见 API 手册
* @throws I2softException:
*/
public Map listCompareStatus(StringMap args) throws I2softException {
String url = String.format("%s/compare/status", auth.cc_url);
Response r = auth.client.get(url, args);
return r.jsonToMap();
}
/**
* 2 列表-4 操作
*
* @param args: 参数详见 API 手册
* @return 参数详见 API 手册
* @throws I2softException:
*/
public Map operateCompare(StringMap args) throws I2softException {
String url = String.format("%s/compare/operate", auth.cc_url);
Response r = auth.client.post(url, args);
return r.jsonToMap();
}
/**
* 2 列表-4 操作
*
* @param args: 参数详见 API 手册
* @return 参数详见 API 手册
* @throws I2softException:
*/
public Map downloadCompare(StringMap args) throws I2softException {
args.put("operate", "download");
String url = String.format("%s/compare/operate", auth.cc_url);
Response r = auth.client.post(url, args);
return r.jsonToMap();
}
/**
* 2 列表-4 操作
*
* @param args: 参数详见 API 手册
* @return 参数详见 API 手册
* @throws I2softException:
*/
public Map startCompare(StringMap args) throws I2softException {
args.put("operate", "start");
String url = String.format("%s/compare/operate", auth.cc_url);
Response r = auth.client.post(url, args);
return r.jsonToMap();
}
/**
* 2 列表-4 操作
*
* @param args: 参数详见 API 手册
* @return 参数详见 API 手册
* @throws I2softException:
*/
public Map stopCompare(StringMap args) throws I2softException {
args.put("operate", "stop");
String url = String.format("%s/compare/operate", auth.cc_url);
Response r = auth.client.post(url, args);
return r.jsonToMap();
}
/**
* 2 列表-4 操作
*
* @param args: 参数详见 API 手册
* @return 参数详见 API 手册
* @throws I2softException:
*/
public Map startImmediatelyCompare(StringMap args) throws I2softException {
args.put("operate", "start_immediately");
String url = String.format("%s/compare/operate", auth.cc_url);
Response r = auth.client.post(url, args);
return r.jsonToMap();
}
/**
* 2 列表-3 删除
*
* @param args: 参数详见 API 手册
* @return 参数详见 API 手册
* @throws I2softException:
*/
public Map deleteCompare(StringMap args) throws I2softException {
String url = String.format("%s/compare", auth.cc_url);
Response r = auth.client.delete(url, args);
return r.jsonToMap();
}
/**
* 接收任务执行结果
*
* @param args: 参数详见 API 手册
* @return code, message
* @throws I2softException:
*/
public I2Rs.I2SmpRs collectCompareResult(StringMap args) throws I2softException {
String url = String.format("%s/compare/collect_result", auth.cc_url);
Response r = auth.client.post(url, args);
return r.jsonToObject(I2Rs.I2SmpRs.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy