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

nl.topicus.jdbc.CloudSpannerOAuthUtil Maven / Gradle / Ivy

There is a newer version: 1.1.6
Show newest version
package nl.topicus.jdbc;

import nl.topicus.jdbc.shaded.com.google.api.client.http.HttpTransport;
import nl.topicus.jdbc.shaded.com.google.api.client.http.javanet.NetHttpTransport;
import nl.topicus.jdbc.shaded.com.google.auth.http.HttpTransportFactory;

public class CloudSpannerOAuthUtil
{
	static final HttpTransport HTTP_TRANSPORT = new NetHttpTransport();

	static final HttpTransportFactory HTTP_TRANSPORT_FACTORY = new DefaultHttpTransportFactory();

	static class DefaultHttpTransportFactory implements HttpTransportFactory
	{

		@Override
		public HttpTransport create()
		{
			return HTTP_TRANSPORT;
		}
	}

	private CloudSpannerOAuthUtil()
	{
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy