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

com.xlrit.gears.runner.driver.AbstractDriver Maven / Gradle / Ivy

The newest version!
package com.xlrit.gears.runner.driver;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.xlrit.gears.runner.graphql.GraphQLClient;

public abstract class AbstractDriver implements Driver {
	protected final ObjectMapper objectMapper = new ObjectMapper();

	protected GraphQLClient getClient(C config) {
		return new GraphQLClient(config.baseUrl + "/graphql", objectMapper);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy