File tree 4 files changed +4
-4
lines changed
rest/src/main/java/org/elasticsearch/client
sniffer/src/main/java/org/elasticsearch/client/sniff
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 32
32
* Holds an elasticsearch response. It wraps the {@link HttpResponse} returned and associates it with
33
33
* its corresponding {@link RequestLine} and {@link HttpHost}.
34
34
*/
35
- public final class Response {
35
+ public class Response {
36
36
37
37
private final RequestLine requestLine ;
38
38
private final HttpHost host ;
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ public final class ResponseException extends IOException {
33
33
34
34
private Response response ;
35
35
36
- ResponseException (Response response ) throws IOException {
36
+ public ResponseException (Response response ) throws IOException {
37
37
super (buildMessage (response ));
38
38
this .response = response ;
39
39
}
Original file line number Diff line number Diff line change 77
77
*
78
78
* Requests can be traced by enabling trace logging for "tracer". The trace logger outputs requests and responses in curl format.
79
79
*/
80
- public final class RestClient implements Closeable {
80
+ public class RestClient implements Closeable {
81
81
82
82
private static final Log logger = LogFactory .getLog (RestClient .class );
83
83
Original file line number Diff line number Diff line change 42
42
* {@link RestClientBuilder#setFailureListener(RestClient.FailureListener)}. The Sniffer implementation needs to be lazily set to the
43
43
* previously created SniffOnFailureListener through {@link SniffOnFailureListener#setSniffer(Sniffer)}.
44
44
*/
45
- public final class Sniffer implements Closeable {
45
+ public class Sniffer implements Closeable {
46
46
47
47
private static final Log logger = LogFactory .getLog (Sniffer .class );
48
48
You can’t perform that action at this time.
0 commit comments