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

com.eg.agent.android.instrumentation.retrofit.RetrofitInstrumentation Maven / Gradle / Ivy

There is a newer version: 2.1.3
Show newest version
package com.eg.agent.android.instrumentation.retrofit;


import com.eg.agent.android.instrumentation.ReplaceCallSite;
import com.eg.agent.android.logging.AgentLog;
import com.eg.agent.android.logging.AgentLogManager;

import retrofit.RestAdapter.Builder;
import retrofit.client.Client;

public final class RetrofitInstrumentation {
    private static final AgentLog log = AgentLogManager.getAgentLog();

    private RetrofitInstrumentation() {
    }

    @ReplaceCallSite
    public static Builder setClient(Builder builder, Client client) {
        return new RestAdapterBuilderExtension(builder).setClient(client);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy