File tree Expand file tree Collapse file tree 3 files changed +2
-14
lines changed
scribejava-core/src/main/java/com/github/scribejava/core Expand file tree Collapse file tree 3 files changed +2
-14
lines changed Original file line number Diff line number Diff line change 44 * add Box (thanks to https://github.com/MclaughlinSteve)
55 * fix: OAuth20Service::refreshAccessToken should use RefreshTokenEndpoint, not AccessTokenEndpoint (thanks to https://github.com/vivin)
66 * move signRequest method to OAuthService (common for OAuth1 and OAuth2) (thanks to https://github.com/apomelov)
7+ * drop deprecated setConnectionKeepAlive method
78
89[3.2.0]
910 * Add Naver API (thanks to chooco)
Original file line number Diff line number Diff line change @@ -254,20 +254,6 @@ public void setCharset(String charsetName) {
254254 charset = charsetName ;
255255 }
256256
257- /**
258- * Sets whether the underlying Http Connection is persistent or not.
259- *
260- * @param connectionKeepAlive boolean
261- *
262- * @see <a
263- * href="http://download.oracle.com/javase/1.5.0/docs/guide/net/http-keepalive.html">http://download.oracle.com/javase/1.5.0/docs/guide/net/http-keepalive.html</a>
264- * @deprecated does nothing - JVM default is left untouched. Set {@code http.keepAlive} system property to
265- * {@code false} for pre-deprecation behavior.
266- */
267- @ Deprecated
268- public void setConnectionKeepAlive (boolean connectionKeepAlive ) {
269- }
270-
271257 /**
272258 * Sets whether the underlying Http Connection follows redirects or not.
273259 *
Original file line number Diff line number Diff line change 2121 * The main ScribeJava object.
2222 *
2323 * A facade responsible for the retrieval of request and access tokens and for the signing of HTTP requests.
24+ * @param <T> type of token used to sign the request
2425 */
2526public abstract class OAuthService <T extends Token > {
2627
You can’t perform that action at this time.
0 commit comments