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

org.solovyev.android.http.HttpTransactionDef Maven / Gradle / Ivy

There is a newer version: 1.1.18
Show newest version
package org.solovyev.android.http;

import org.apache.http.NameValuePair;
import org.jetbrains.annotations.NotNull;

import java.util.List;

/**
 * User: serso
 * Date: 6/4/12
 * Time: 4:24 PM
 */
public interface HttpTransactionDef {

    @NotNull
    HttpMethod getHttpMethod();

    @NotNull
    String getUri();

    @NotNull
    List getRequestParameters();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy