Package org.eclipse.cbi.maven.http
Class AutoValue_RetryHttpClient
- java.lang.Object
-
- org.eclipse.cbi.maven.http.RetryHttpClient
-
- org.eclipse.cbi.maven.http.AutoValue_RetryHttpClient
-
- All Implemented Interfaces:
HttpClient
final class AutoValue_RetryHttpClient extends RetryHttpClient
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) static class
AutoValue_RetryHttpClient.Builder
-
Field Summary
Fields Modifier and Type Field Description private HttpClient
delegate
private Logger
log
private int
maxRetries
private long
retryInterval
private java.util.concurrent.TimeUnit
retryIntervalUnit
-
Constructor Summary
Constructors Modifier Constructor Description private
AutoValue_RetryHttpClient(int maxRetries, long retryInterval, java.util.concurrent.TimeUnit retryIntervalUnit, HttpClient delegate, Logger log)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) HttpClient
delegate()
boolean
equals(java.lang.Object o)
int
hashCode()
(package private) Logger
log()
(package private) int
maxRetries()
(package private) long
retryInterval()
(package private) java.util.concurrent.TimeUnit
retryIntervalUnit()
java.lang.String
toString()
-
Methods inherited from class org.eclipse.cbi.maven.http.RetryHttpClient
retryRequestOn, send, send
-
-
-
-
Field Detail
-
maxRetries
private final int maxRetries
-
retryInterval
private final long retryInterval
-
retryIntervalUnit
private final java.util.concurrent.TimeUnit retryIntervalUnit
-
delegate
private final HttpClient delegate
-
log
private final Logger log
-
-
Constructor Detail
-
AutoValue_RetryHttpClient
private AutoValue_RetryHttpClient(int maxRetries, long retryInterval, java.util.concurrent.TimeUnit retryIntervalUnit, HttpClient delegate, Logger log)
-
-
Method Detail
-
maxRetries
int maxRetries()
- Specified by:
maxRetries
in classRetryHttpClient
-
retryInterval
long retryInterval()
- Specified by:
retryInterval
in classRetryHttpClient
-
retryIntervalUnit
java.util.concurrent.TimeUnit retryIntervalUnit()
- Specified by:
retryIntervalUnit
in classRetryHttpClient
-
delegate
HttpClient delegate()
- Specified by:
delegate
in classRetryHttpClient
-
log
Logger log()
- Specified by:
log
in classRetryHttpClient
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-