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

com.atlassian.stash.rest.client.httpclient.HttpClientStashClientFactoryImpl Maven / Gradle / Ivy

There is a newer version: 2.3.12
Show newest version
package com.atlassian.stash.rest.client.httpclient;

import com.atlassian.stash.rest.client.api.StashClient;
import com.atlassian.stash.rest.client.core.StashClientImpl;

import javax.annotation.Nonnull;

public class HttpClientStashClientFactoryImpl implements HttpClientStashClientFactory {

    @Override
    public StashClient getStashClient(@Nonnull HttpClientConfig config) {
        HttpClientHttpExecutor httpExecutor = new HttpClientHttpExecutor(config);
        return new StashClientImpl(httpExecutor);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy