com.aliyun.sdk.gateway.sls.internal.interceptor.AttributeKey Maven / Gradle / Ivy
package com.aliyun.sdk.gateway.sls.internal.interceptor;
import com.aliyun.core.utils.AttributeMap;
import java.util.List;
public final class AttributeKey extends AttributeMap.Key {
public static final AttributeKey> EXTRA_SUBRESOURCE = new AttributeKey<>(new UnsafeValueType(List.class));
// public static final AttributeKey REQUEST_BODY = new AttributeKey<>(TeaRequestBody.class);
public static final AttributeKey REQUEST_BODY = new AttributeKey<>(String.class);
protected AttributeKey(Class valueType) {
super(valueType);
}
protected AttributeKey(UnsafeValueType unsafeValueType) {
super(unsafeValueType);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy