com.qiniu.rtc.model.QRTCResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qiniu-java-sdk Show documentation
Show all versions of qiniu-java-sdk Show documentation
Qiniu Cloud Storage SDK for Java
package com.qiniu.rtc.model;
import lombok.Data;
@Data
public class QRTCResult {
private int code;
private String message;
private T result;
public QRTCResult(int code, String message, T result) {
this.code = code;
this.message = message;
this.result = result;
}
public static QRTCResult fail(int code, String message) {
return new QRTCResult<>(code, message, null);
}
public static QRTCResult success(int code, T result) {
return new QRTCResult<>(code, "OK", result);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy