add质量BPM接口文件
parent
b1d4e4274c
commit
e1a4ba1bb4
@ -0,0 +1,16 @@
|
||||
package com.foreverwin.mesnac.anomaly.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Author YinQ
|
||||
* @create 2022-08-17 15:18
|
||||
*/
|
||||
@Data
|
||||
public class NcCodesVO {
|
||||
private List<String> ncGroupAndNcCodes;
|
||||
private List<String> dutyCauseType;
|
||||
private List<String> dutyType;
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
package com.foreverwin.mesnac.anomaly.dto;
|
||||
|
||||
import com.foreverwin.mesnac.meapi.dto.RouterStepDto;
|
||||
import com.foreverwin.mesnac.meapi.model.RouterStep;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class RouterBpmVO {
|
||||
private String abnormalNo;
|
||||
private String pbDescription;
|
||||
private String item;
|
||||
private String itemRevision;
|
||||
private String itemDescription;
|
||||
private String shopOrder;
|
||||
private String router;
|
||||
private String routerRevision;
|
||||
private String routerType;
|
||||
private String routerBo;
|
||||
private String site;
|
||||
private List<RouterStepDto> routerStep;
|
||||
}
|
@ -0,0 +1,135 @@
|
||||
package com.foreverwin.mesnac.anomaly.model;
|
||||
|
||||
/**
|
||||
* @Author YinQ
|
||||
* @create 2022-08-02 13:50
|
||||
*/
|
||||
public class Photos {
|
||||
|
||||
private String id;
|
||||
private String remarks;
|
||||
private String createdTime;
|
||||
private String modifiedTime;
|
||||
private boolean deleted;
|
||||
private String createdBy;
|
||||
private String modifiedBy;
|
||||
private String refId;
|
||||
private String schemaCode;
|
||||
private String name;
|
||||
private String fileExtension;
|
||||
private Long fileSize;
|
||||
private String mimeType;
|
||||
private String base64ImageStr;
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getRemarks() {
|
||||
return remarks;
|
||||
}
|
||||
|
||||
public void setRemarks(String remarks) {
|
||||
this.remarks = remarks;
|
||||
}
|
||||
|
||||
public String getCreatedTime() {
|
||||
return createdTime;
|
||||
}
|
||||
|
||||
public void setCreatedTime(String createdTime) {
|
||||
this.createdTime = createdTime;
|
||||
}
|
||||
|
||||
public String getModifiedTime() {
|
||||
return modifiedTime;
|
||||
}
|
||||
|
||||
public void setModifiedTime(String modifiedTime) {
|
||||
this.modifiedTime = modifiedTime;
|
||||
}
|
||||
|
||||
public boolean isDeleted() {
|
||||
return deleted;
|
||||
}
|
||||
|
||||
public void setDeleted(boolean deleted) {
|
||||
this.deleted = deleted;
|
||||
}
|
||||
|
||||
public String getCreatedBy() {
|
||||
return createdBy;
|
||||
}
|
||||
|
||||
public void setCreatedBy(String createdBy) {
|
||||
this.createdBy = createdBy;
|
||||
}
|
||||
|
||||
public String getModifiedBy() {
|
||||
return modifiedBy;
|
||||
}
|
||||
|
||||
public void setModifiedBy(String modifiedBy) {
|
||||
this.modifiedBy = modifiedBy;
|
||||
}
|
||||
|
||||
public String getRefId() {
|
||||
return refId;
|
||||
}
|
||||
|
||||
public void setRefId(String refId) {
|
||||
this.refId = refId;
|
||||
}
|
||||
|
||||
public String getSchemaCode() {
|
||||
return schemaCode;
|
||||
}
|
||||
|
||||
public void setSchemaCode(String schemaCode) {
|
||||
this.schemaCode = schemaCode;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getFileExtension() {
|
||||
return fileExtension;
|
||||
}
|
||||
|
||||
public void setFileExtension(String fileExtension) {
|
||||
this.fileExtension = fileExtension;
|
||||
}
|
||||
|
||||
public Long getFileSize() {
|
||||
return fileSize;
|
||||
}
|
||||
|
||||
public void setFileSize(Long fileSize) {
|
||||
this.fileSize = fileSize;
|
||||
}
|
||||
|
||||
public String getMimeType() {
|
||||
return mimeType;
|
||||
}
|
||||
|
||||
public void setMimeType(String mimeType) {
|
||||
this.mimeType = mimeType;
|
||||
}
|
||||
|
||||
public String getBase64ImageStr() {
|
||||
return base64ImageStr;
|
||||
}
|
||||
|
||||
public void setBase64ImageStr(String base64ImageStr) {
|
||||
this.base64ImageStr = base64ImageStr;
|
||||
}
|
||||
}
|
@ -0,0 +1,74 @@
|
||||
package com.foreverwin.mesnac.anomaly.service;
|
||||
|
||||
import com.foreverwin.mesnac.anomaly.model.AbnormalBill;
|
||||
import com.foreverwin.mesnac.anomaly.model.AbnormalBillDispose;
|
||||
import com.foreverwin.mesnac.anomaly.utils.OAuthTokenInfo;
|
||||
import com.foreverwin.mesnac.anomaly.utils.YunBpmApiRes;
|
||||
import org.springframework.web.multipart.MultipartFile;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
/**
|
||||
* @Author YinQ
|
||||
* @create 2022-08-04 14:16
|
||||
*/
|
||||
public interface YunBpmService {
|
||||
|
||||
|
||||
/**
|
||||
* 新建bpm表单
|
||||
*
|
||||
* @param formData
|
||||
* @param owner
|
||||
* @param ownerDeptId
|
||||
* @param sheetCode
|
||||
* @param workflowCode
|
||||
* @param replayToken
|
||||
* @param accessToken
|
||||
* @return
|
||||
*/
|
||||
YunBpmApiRes saveForm(Object formData, String owner, String ownerDeptId, String sheetCode, String workflowCode, String replayToken, String accessToken);
|
||||
|
||||
/**
|
||||
* 更新bpm表单
|
||||
*
|
||||
* @param formData
|
||||
* @param sheetCode
|
||||
* @param workflowCode
|
||||
* @param workflowFormId
|
||||
* @param workflowInstanceId
|
||||
* @param workItemId
|
||||
* @param replayToken
|
||||
* @param accessToken
|
||||
* @return
|
||||
*/
|
||||
YunBpmApiRes updateForm(Object formData, String sheetCode, String workflowCode, String workflowFormId, String workflowInstanceId, String workItemId, String replayToken, String accessToken);
|
||||
|
||||
|
||||
/**
|
||||
* 用户鉴权
|
||||
*
|
||||
* @param userName
|
||||
* @param password
|
||||
* @return
|
||||
*/
|
||||
OAuthTokenInfo getTokenByUserNameAndPassword(String userName, String password);
|
||||
|
||||
/**
|
||||
* 上传附件
|
||||
* @param urlStr http://yunbpmcs.mesnac.com:8080/api/api/aliyun/upload
|
||||
* @param file 文件类
|
||||
* @param token accessToken
|
||||
**/
|
||||
String postFile(String urlStr, MultipartFile file, String token) throws IOException, InterruptedException;
|
||||
|
||||
/**
|
||||
* 质量异常提报给质量bpm系统
|
||||
* @param abnormalBill
|
||||
* @param ncGroup
|
||||
* @param ncCode
|
||||
* @return
|
||||
*/
|
||||
YunBpmApiRes saveQualitySystem(AbnormalBill abnormalBill, AbnormalBillDispose abnormalBillDispose, String ncGroup, String ncCode);
|
||||
|
||||
}
|
@ -0,0 +1,164 @@
|
||||
package com.foreverwin.mesnac.anomaly.utils;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Author YinQ
|
||||
* @create 2022-08-02 10:44
|
||||
*/
|
||||
public class OAuthTokenInfo {
|
||||
|
||||
private String corpId;
|
||||
private String user_name;
|
||||
private boolean mobile;
|
||||
private boolean isAdmin;
|
||||
private String token_type;
|
||||
private List<String> authorities;
|
||||
private String client_id;
|
||||
private String access_token;
|
||||
private String refresh_token;
|
||||
private List<String> aud;
|
||||
private String user_id;
|
||||
private boolean success;
|
||||
private List<String> scope;
|
||||
private String exp;
|
||||
private String expires_in;
|
||||
private boolean isAppAdmin;
|
||||
private String jti;
|
||||
|
||||
public String getCorpId() {
|
||||
return corpId;
|
||||
}
|
||||
|
||||
public void setCorpId(String corpId) {
|
||||
this.corpId = corpId;
|
||||
}
|
||||
|
||||
public String getUser_name() {
|
||||
return user_name;
|
||||
}
|
||||
|
||||
public void setUser_name(String user_name) {
|
||||
this.user_name = user_name;
|
||||
}
|
||||
|
||||
public boolean isMobile() {
|
||||
return mobile;
|
||||
}
|
||||
|
||||
public void setMobile(boolean mobile) {
|
||||
this.mobile = mobile;
|
||||
}
|
||||
|
||||
public boolean isAdmin() {
|
||||
return isAdmin;
|
||||
}
|
||||
|
||||
public void setAdmin(boolean admin) {
|
||||
isAdmin = admin;
|
||||
}
|
||||
|
||||
public String getToken_type() {
|
||||
return token_type;
|
||||
}
|
||||
|
||||
public void setToken_type(String token_type) {
|
||||
this.token_type = token_type;
|
||||
}
|
||||
|
||||
public List<String> getAuthorities() {
|
||||
return authorities;
|
||||
}
|
||||
|
||||
public void setAuthorities(List<String> authorities) {
|
||||
this.authorities = authorities;
|
||||
}
|
||||
|
||||
public String getClient_id() {
|
||||
return client_id;
|
||||
}
|
||||
|
||||
public void setClient_id(String client_id) {
|
||||
this.client_id = client_id;
|
||||
}
|
||||
|
||||
public String getAccess_token() {
|
||||
return access_token;
|
||||
}
|
||||
|
||||
public void setAccess_token(String access_token) {
|
||||
this.access_token = access_token;
|
||||
}
|
||||
|
||||
public String getRefresh_token() {
|
||||
return refresh_token;
|
||||
}
|
||||
|
||||
public void setRefresh_token(String refresh_token) {
|
||||
this.refresh_token = refresh_token;
|
||||
}
|
||||
|
||||
public List<String> getAud() {
|
||||
return aud;
|
||||
}
|
||||
|
||||
public void setAud(List<String> aud) {
|
||||
this.aud = aud;
|
||||
}
|
||||
|
||||
public String getUser_id() {
|
||||
return user_id;
|
||||
}
|
||||
|
||||
public void setUser_id(String user_id) {
|
||||
this.user_id = user_id;
|
||||
}
|
||||
|
||||
public boolean getSuccess() {
|
||||
return success;
|
||||
}
|
||||
|
||||
public void setSuccess(boolean success) {
|
||||
this.success = success;
|
||||
}
|
||||
|
||||
public List<String> getScope() {
|
||||
return scope;
|
||||
}
|
||||
|
||||
public void setScope(List<String> scope) {
|
||||
this.scope = scope;
|
||||
}
|
||||
|
||||
public String getExp() {
|
||||
return exp;
|
||||
}
|
||||
|
||||
public void setExp(String exp) {
|
||||
this.exp = exp;
|
||||
}
|
||||
|
||||
public String getExpires_in() {
|
||||
return expires_in;
|
||||
}
|
||||
|
||||
public void setExpires_in(String expires_in) {
|
||||
this.expires_in = expires_in;
|
||||
}
|
||||
|
||||
public boolean getIsAppAdmin() {
|
||||
return isAppAdmin;
|
||||
}
|
||||
|
||||
public void setIsAppAdmin(boolean isAppAdmin) {
|
||||
this.isAppAdmin = isAppAdmin;
|
||||
}
|
||||
|
||||
public String getJti() {
|
||||
return jti;
|
||||
}
|
||||
|
||||
public void setJti(String jti) {
|
||||
this.jti = jti;
|
||||
}
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
package com.foreverwin.mesnac.anomaly.utils;
|
||||
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* @Author YinQ
|
||||
* @create 2022-08-05 11:46
|
||||
*/
|
||||
@Getter
|
||||
public enum ResultCode implements StatusCode{
|
||||
SUCCESS(0, "请求成功"),
|
||||
FAILED(403, "请求失败"),
|
||||
VALIDATE_ERROR(1002, "参数校验失败"),
|
||||
RESPONSE_PACK_ERROR(1003, "response返回包装失败");
|
||||
|
||||
private int code;
|
||||
private String msg;
|
||||
|
||||
ResultCode(int code, String msg) {
|
||||
this.code = code;
|
||||
this.msg = msg;
|
||||
}
|
||||
}
|
@ -0,0 +1,52 @@
|
||||
package com.foreverwin.mesnac.anomaly.utils;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* @Author YinQ
|
||||
* @create 2022-08-05 11:44
|
||||
*/
|
||||
@Data
|
||||
public class ResultVo {
|
||||
// 状态码
|
||||
private int code;
|
||||
|
||||
// 状态信息
|
||||
private String msg;
|
||||
|
||||
// 返回对象
|
||||
private Object data;
|
||||
|
||||
// 手动设置返回vo
|
||||
public ResultVo(int code, String msg, Object data) {
|
||||
this.code = code;
|
||||
this.msg = msg;
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
// 默认返回成功状态码,数据对象
|
||||
public ResultVo(Object data) {
|
||||
this.code = ResultCode.SUCCESS.getCode();
|
||||
this.msg = ResultCode.SUCCESS.getMsg();
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
// 返回指定状态码,数据对象
|
||||
public ResultVo(StatusCode statusCode, Object data) {
|
||||
this.code = statusCode.getCode();
|
||||
this.msg = statusCode.getMsg();
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
// 只返回状态码
|
||||
public ResultVo(StatusCode statusCode) {
|
||||
this.code = statusCode.getCode();
|
||||
this.msg = statusCode.getMsg();
|
||||
this.data = null;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,33 @@
|
||||
package com.foreverwin.mesnac.anomaly.utils;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonInclude;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Author YinQ
|
||||
* @create 2022-08-02 15:16
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
@JsonInclude(value= JsonInclude.Include.NON_NULL)
|
||||
public class SaveFormModel {
|
||||
/** 审批意见 */
|
||||
//private BizCommentModel approval;
|
||||
|
||||
/** 业务数据对象 */
|
||||
private BizObjectModel bizObject;
|
||||
|
||||
/** 重放验证码 */
|
||||
private String replayToken;
|
||||
|
||||
/** 是否saveBizObject*/
|
||||
private Boolean saveBizObject;
|
||||
|
||||
/** 任务id */
|
||||
private String workItemId;
|
||||
/** 流程编码 */
|
||||
private String workflowCode;
|
||||
/** 流程实例id */
|
||||
private String workflowInstanceId;
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package com.foreverwin.mesnac.anomaly.utils;
|
||||
|
||||
/**
|
||||
* @Author Yinq
|
||||
* @create 2022-08-05 11:46
|
||||
*/
|
||||
public interface StatusCode {
|
||||
|
||||
public int getCode();
|
||||
|
||||
public String getMsg();
|
||||
|
||||
}
|
@ -0,0 +1,72 @@
|
||||
package com.foreverwin.mesnac.anomaly.utils;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import lombok.Data;
|
||||
import org.apache.ibatis.type.Alias;
|
||||
|
||||
/**
|
||||
* @Author YinQ
|
||||
* @create 2022-08-02 10:46
|
||||
*/
|
||||
public class YunBpmApiRes {
|
||||
/** 错误码,成功返回0 */
|
||||
private Integer errcode;
|
||||
/** 提示消息 */
|
||||
private String errmsg;
|
||||
private String traceId;
|
||||
/** 授权code */
|
||||
private String code;
|
||||
/** 返回结果 */
|
||||
private Object data;
|
||||
|
||||
public Integer getErrCode() {
|
||||
return errcode;
|
||||
}
|
||||
|
||||
public void setErrCode(Integer errCode) {
|
||||
this.errcode = errCode;
|
||||
}
|
||||
|
||||
public String getErrMsg() {
|
||||
return errmsg;
|
||||
}
|
||||
|
||||
public void setErrMsg(String errMsg) {
|
||||
this.errmsg = errMsg;
|
||||
}
|
||||
|
||||
public String getTraceId() {
|
||||
return traceId;
|
||||
}
|
||||
|
||||
public void setTraceId(String traceId) {
|
||||
this.traceId = traceId;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public Object getData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(Object data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "YunBpmApiRes{" +
|
||||
"errcode=" + errcode +
|
||||
", errmsg='" + errmsg + '\'' +
|
||||
", traceId='" + traceId + '\'' +
|
||||
", code='" + code + '\'' +
|
||||
", data=" + data +
|
||||
'}';
|
||||
}
|
||||
}
|
@ -0,0 +1,41 @@
|
||||
package com.foreverwin.mesnac.anomaly.utils;
|
||||
|
||||
/**
|
||||
* @Author YinQ
|
||||
* @create 2022-08-02 15:14
|
||||
*/
|
||||
public class YunBpmApis {
|
||||
/** 获取OAuth Code */
|
||||
public static final String GET_CODE = "/api/login/Authentication/get_code";
|
||||
/** 获取Token */
|
||||
public static final String GET_TOKEN = "/api/login/Authentication/get_token?code=%s&client_secret=%s&client_id=%s&url=%s&redirect_uri=%s";
|
||||
/** 获取重放Token */
|
||||
public static final String GET_REPLAY_TOKEN = "/api/api/runtime/form/getReplayToken?access_token=%s";
|
||||
|
||||
/** 保存或修改表单 */
|
||||
public static final String SAVE_OR_UPDATE_FORM = "/api/api/runtime/form/save?access_token=%s";
|
||||
/** 提交待办任务 */
|
||||
public static final String FORM_SUBMIT = "/api/api/runtime/form/submit?access_token=%s";
|
||||
/** 作废流程实例 */
|
||||
public static final String ABORT_INSTANCE = "/api/api/runtime/workflow/abort_instance?access_token=%s&workflowInstanceId=%s";
|
||||
/** 驳回任务 */
|
||||
public static final String REJECT_WORK_ITEM = "/api/api/runtime/workflow/reject_workItem?access_token=%s";
|
||||
/** 下载文件 */
|
||||
public static final String FILE_DOWNLOAD = "/api/api/aliyun/download?access_token=%s&refId=%s";
|
||||
/** 上传文件 */
|
||||
public static final String FILE_UPLOAD = "/api/api/aliyun/upload";
|
||||
/** 转发任务 */
|
||||
public static final String FORWARD_WORKITEM = "/api/api/runtime/workflow/forward_workItem?access_token=%s";
|
||||
/** 根据流程实例id获取审批记录列表 */
|
||||
public static final String LIST_WORKITEM_APPROVALS = "/api/api/runtime/workflow/list_workitem_approvals?access_token=%s&workflowInstanceId=%s";
|
||||
/** 通知任务设置已阅 */
|
||||
public static final String UPDATE_CIRCULATE_READED = "/api/api/runtime/workflow/update_circulate_readed?access_token=%s";
|
||||
/** 查询物料信息 */
|
||||
public static final String SELECT_MATERIAL_DESP = "/api/public/api/xmzlwt/selectMaterialDesp?materialCode=%s";
|
||||
/** 我的待办 */
|
||||
public static final String SEARCH_WORKITEMS = "/api/api/runtime/workflow/search_workitems?workflowCode=%s&access_token=%s&size=100000";
|
||||
/** 我的已办 */
|
||||
public static final String FINISHED_WORKITEMS = "/api/api/runtime/workflow/list_finished_workitems?workflowCode=%s&access_token=%s&size=100000";
|
||||
/** 我的提交 */
|
||||
public static final String MY_INSTANCES = "/api/api/runtime/workflow/list_my_instances?workflowCode=%s&access_token=%s&size=100000&state=PROCESSING";
|
||||
}
|
@ -0,0 +1,50 @@
|
||||
package com.foreverwin.mesnac.anomaly.utils;
|
||||
|
||||
/**
|
||||
* @Author YinQ
|
||||
* @create 2022-08-02 10:36
|
||||
*/
|
||||
public class yunBpmConfig {
|
||||
|
||||
public static final String userName = "zhangzy";
|
||||
public static final String passWord = "123456";
|
||||
|
||||
public static final String apiBaseUrl = "http://yunbpmcs.mesnac.com:8080";
|
||||
/**
|
||||
* 上传附件url
|
||||
*/
|
||||
public static final String urlStr = "http://yunbpmcs.mesnac.com:8080/api/api/aliyun/upload";
|
||||
public static final String clientSecret = "c31b32364ce19ca8fcd150a417ecce58";
|
||||
public static final String clientId = "api";
|
||||
/**
|
||||
* 部门Id
|
||||
*/
|
||||
public static final String deptId = "ff808081785ec88301788183073b0b2b";
|
||||
/**
|
||||
* 表单Code、工作流Code
|
||||
*/
|
||||
public static final String workCode = "manufacture_cores";
|
||||
/**
|
||||
* 成功代码
|
||||
*/
|
||||
public static final Integer SUCCESS_CODE = 200;
|
||||
/**
|
||||
* bpm向mes通信秘钥
|
||||
*/
|
||||
public static final String secretKey = "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJjb3JwSWQiOm51bGwsInVzZXJfbmFtZSI6InpoYW5nenkiLCJtb2JpbGUiOmZhbHNlLCJpc0FkbWluIjpmYWxzZSwiYXV0aG9yaXRpZXMiOlsiVVNFUiIsIkFVVEhfU1lTVEVNX01BTkFHRSJdLCJjbGllbnRfaWQiOiJhcGkiLCJhdWQiOlsiYXBpIl0sInVzZXJfaWQiOiJiZDMzZWQ3MmI1NWU0YTMyODBlZjI3OTgxNjNkYjA2OSIsInNjb3BlIjpbInJlYWQiXSwiYXRpIjoiYTE2YWI0NzMtZTA5MC00Y2M1LWJjNzktYTNjNDc4YWFlNWQ2IiwiZXhwIjoxNjU5NTE2NDkxLCJpc0FwcEFkbWluIjpmYWxzZSwianRpIjoiMDhlNTU3OGYtNTdjOS00YTRkLTkzZWEtNzUyOGMxODNjZDdjIn0.LwTWHq1DS6NK0zbrbaQMS11I6sNmSBS3JN-QsjNH-lJCWg0voXwZ3MWEvr4S-DDOjdjeQRmhbtW5uxDZp4o3rwYRSg4sizoqStGmulqjEvjAdwbF-EzDChGdL8bWUYiWL9wWn0JP9-vBBkUei74H-By8vvSzB6CuJxr6CF1G4bAyBUTFFKzQovnRuiy9cqhXARe2rUi0lPQrOy7aFXX0V8NrwgUAJJxRdMR4COF9htjifD0aQwRtRvuuOtRuIuWPY0rZPtA161zQEwlp6owvccpNnRbgVj2SSHl8Jx89f5vgidWRjHLxxiY_j4toCj40-mHg7lI3YQWhDszI7Qnb0Q";
|
||||
|
||||
|
||||
|
||||
|
||||
public static String getApiBaseUrl() {
|
||||
return apiBaseUrl;
|
||||
}
|
||||
|
||||
public static String getClientSecret() {
|
||||
return clientSecret;
|
||||
}
|
||||
|
||||
public static String getClientId() {
|
||||
return clientId;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue