@@ -63,10 +63,7 @@ public final class Apache5HttpTransport extends HttpTransport {
63
63
/** If the HTTP client uses mTLS channel. */
64
64
private final boolean isMtls ;
65
65
66
- /**
67
- * {@link Beta} Constructor that uses {@link #newDefaultHttpClient()} for the Apache HTTP client.
68
- */
69
- @ Beta
66
+ /** Constructor that uses {@link #newDefaultHttpClient()} for the Apache HTTP client. */
70
67
public Apache5HttpTransport () {
71
68
this (newDefaultHttpClient (), false );
72
69
}
@@ -109,7 +106,6 @@ public Apache5HttpTransport(HttpClient httpClient, boolean isMtls) {
109
106
}
110
107
111
108
/**
112
- * {@link Beta} <br>
113
109
* Creates a new instance of the Apache HTTP client that is used by the {@link
114
110
* #Apache5HttpTransport()} constructor.
115
111
*
@@ -127,14 +123,13 @@ public Apache5HttpTransport(HttpClient httpClient, boolean isMtls) {
127
123
*
128
124
* @return new instance of the Apache HTTP client
129
125
*/
130
- @ Beta
131
126
public static HttpClient newDefaultHttpClient () {
132
127
return newDefaultCloseableHttpClientBuilder ().build ();
133
128
}
134
129
135
130
/**
136
- * {@link Beta} Creates a new Apache HTTP client builder that is used by the {@link
137
- * #Apache5HttpTransport()} constructor.
131
+ * Creates a new Apache HTTP client builder that is used by the {@link #Apache5HttpTransport()}
132
+ * constructor.
138
133
*
139
134
* <p>Settings:
140
135
*
@@ -151,7 +146,6 @@ public static HttpClient newDefaultHttpClient() {
151
146
*
152
147
* @return new instance of the Apache HTTP client builder
153
148
*/
154
- @ Beta
155
149
public static HttpClientBuilder newDefaultCloseableHttpClientBuilder () {
156
150
PoolingHttpClientConnectionManager connectionManager =
157
151
PoolingHttpClientConnectionManagerBuilder .create ()
0 commit comments