Interface HttpTransportFactory
- All Known Implementing Classes:
IdTokenVerifier.DefaultHttpTransportFactory
public interface HttpTransportFactory
A base interface for all
HttpTransport
factories.
Implementation must provide a public no-arg constructor. Loading of a factory implementation
is done via ServiceLoader
.
-
Method Summary
Modifier and TypeMethodDescriptioncom.google.api.client.http.HttpTransport
create()
Creates aHttpTransport
instance.
-
Method Details
-
create
com.google.api.client.http.HttpTransport create()Creates aHttpTransport
instance.- Returns:
- The HttpTransport instance.
-