- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
57 lines
1.1 KiB
Java
57 lines
1.1 KiB
Java
package com.amazonaws;
|
|
|
|
import com.amazonaws.http.HttpMethodName;
|
|
import com.amazonaws.util.AWSRequestMetrics;
|
|
import java.io.InputStream;
|
|
import java.net.URI;
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes.dex */
|
|
public interface Request<T> {
|
|
void addHeader(String str, String str2);
|
|
|
|
void addParameter(String str, String str2);
|
|
|
|
AWSRequestMetrics getAWSRequestMetrics();
|
|
|
|
InputStream getContent();
|
|
|
|
String getEncodedUriResourcePath();
|
|
|
|
URI getEndpoint();
|
|
|
|
Map getHeaders();
|
|
|
|
String getHostPrefix();
|
|
|
|
HttpMethodName getHttpMethod();
|
|
|
|
AmazonWebServiceRequest getOriginalRequest();
|
|
|
|
Map getParameters();
|
|
|
|
String getResourcePath();
|
|
|
|
String getServiceName();
|
|
|
|
long getTimeOffset();
|
|
|
|
boolean isStreaming();
|
|
|
|
void setAWSRequestMetrics(AWSRequestMetrics aWSRequestMetrics);
|
|
|
|
void setContent(InputStream inputStream);
|
|
|
|
void setEndpoint(URI uri);
|
|
|
|
void setHeaders(Map map);
|
|
|
|
void setHttpMethod(HttpMethodName httpMethodName);
|
|
|
|
void setParameters(Map map);
|
|
|
|
void setResourcePath(String str);
|
|
|
|
void setTimeOffset(long j);
|
|
}
|