![JAR search and dependency download from the Maven repository](/logo.png)
com.qcloud.cos.internal.ResponseMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cos_api Show documentation
Show all versions of cos_api Show documentation
qcloud cos sdk for inner tencentyun
The newest version!
package com.qcloud.cos.internal;
import java.util.Map;
import com.qcloud.cos.Headers;
public class ResponseMetadata {
protected final Map metadata;
public ResponseMetadata(Map metadata) {
this.metadata = metadata;
}
public ResponseMetadata(ResponseMetadata originalResponseMetadata) {
this(originalResponseMetadata.metadata);
}
public String getRequestId() {
return metadata.get(Headers.REQUEST_ID);
}
public String getTraceId() {
return metadata.get(Headers.TRACE_ID);
}
@Override
public String toString() {
if (metadata == null)
return "{}";
return metadata.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy