All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.gateway.sls.internal.interceptor.AttributeKey Maven / Gradle / Ivy

There is a newer version: 0.2.16-beta
Show newest version
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