
com.zhibaocloud.carbon.intg.server.sdk.CarbonMessageMeta Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of carbon-server-sdk Show documentation
Show all versions of carbon-server-sdk Show documentation
供服务端(数据接收)使用的SDK,封装了和客户端交互的约定细节
/*
* Copyright (c) 2018-2023. Chengdu WeiSiFan Technology Co., Ltd.
* Carbon Integration SDK is licensed under Mulan PSL v2.
*
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at: http://license.coscl.org.cn/MulanPSL2
*
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
*/
package com.zhibaocloud.carbon.intg.server.sdk;
import com.zhbiaocloud.carbon.intg.CarbonMessageType;
import java.util.UUID;
import lombok.AllArgsConstructor;
import lombok.Getter;
@Getter
@AllArgsConstructor
public class CarbonMessageMeta {
/**
* 请求 ID,可用于重试去重
*/
private UUID requestId;
/**
* 消息类型
*/
private CarbonMessageType type;
/**
* 租户标识
*/
private String tenant;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy