Skip to content

Commit ab4d5e7

Browse files
alicejliburkedavison
andauthoredOct 28, 2024··
docs: update javadoc sample code comments to render correctly in Cloud RAD (#1121)
Co-authored-by: Burke Davison <40617934+burkedavison@users.noreply.github.com>
1 parent 15a110d commit ab4d5e7

24 files changed

+48
-48
lines changed
 

‎google-oauth-client-appengine/src/main/java/com/google/api/client/extensions/appengine/auth/oauth2/AbstractAppEngineAuthorizationCodeCallbackServlet.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
*
4444
* <p>Sample usage:
4545
*
46-
* <pre>
46+
* <pre>{@code
4747
* public class ServletCallbackSample extends AbstractAppEngineAuthorizationCodeCallbackServlet {
4848
*
4949
* &#64;Override
@@ -77,7 +77,7 @@
7777
* "https://server.example.com/authorize").setCredentialStore(new AppEngineCredentialStore())
7878
* .build();
7979
* }
80-
* </pre>
80+
* }</pre>
8181
*
8282
* @since 1.7
8383
* @author Yaniv Inbar

‎google-oauth-client-appengine/src/main/java/com/google/api/client/extensions/appengine/auth/oauth2/AbstractAppEngineAuthorizationCodeServlet.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
*
4444
* <p>Sample usage:
4545
*
46-
* <pre>
46+
* <pre>{@code
4747
* public class ServletSample extends AbstractAppEngineAuthorizationCodeServlet {
4848
*
4949
* &#64;Override
@@ -71,7 +71,7 @@
7171
* .build();
7272
* }
7373
* }
74-
* </pre>
74+
* }</pre>
7575
*
7676
* @since 1.7
7777
* @author Yaniv Inbar

‎google-oauth-client-appengine/src/main/java/com/google/api/client/extensions/appengine/auth/oauth2/AppEngineCredentialStore.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,14 @@ public boolean load(String userId, Credential credential) {
8484
*
8585
* <p>Sample usage:
8686
*
87-
* <pre>
87+
* <pre>{@code
8888
* public static AppEngineDataStore migrate(AppEngineCredentialStore credentialStore)
8989
* throws IOException {
9090
* AppEngineDataStore dataStore = new AppEngineDataStore();
9191
* credentialStore.migrateTo(dataStore);
9292
* return dataStore;
9393
* }
94-
* </pre>
94+
* }</pre>
9595
*
9696
* @param dataStoreFactory App Engine data store factory
9797
* @since 1.16

‎google-oauth-client-appengine/src/main/java/com/google/api/client/extensions/appengine/auth/oauth2/jakarta/AbstractAppEngineAuthorizationCodeCallbackServlet.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
*
4444
* <p>Sample usage:
4545
*
46-
* <pre>
46+
* <pre>{@code
4747
* public class ServletCallbackSample extends AbstractAppEngineAuthorizationCodeCallbackServlet {
4848
*
4949
* &#64;Override
@@ -77,7 +77,7 @@
7777
* "https://server.example.com/authorize").setCredentialStore(new AppEngineCredentialStore())
7878
* .build();
7979
* }
80-
* </pre>
80+
* }</pre>
8181
*
8282
* @since 1.36.0
8383
*/

‎google-oauth-client-appengine/src/main/java/com/google/api/client/extensions/appengine/auth/oauth2/jakarta/AbstractAppEngineAuthorizationCodeServlet.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
*
4444
* <p>Sample usage:
4545
*
46-
* <pre>
46+
* <pre>{@code
4747
* public class ServletSample extends AbstractAppEngineAuthorizationCodeServlet {
4848
*
4949
* &#64;Override
@@ -71,7 +71,7 @@
7171
* .build();
7272
* }
7373
* }
74-
* </pre>
74+
* }</pre>
7575
*
7676
* @since 1.36.0
7777
*/

‎google-oauth-client-java6/src/main/java/com/google/api/client/extensions/java6/auth/oauth2/FileCredentialStore.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -174,14 +174,14 @@ private void save() throws IOException {
174174
*
175175
* <p>Sample usage:
176176
*
177-
* <pre>
177+
* <pre>{@code
178178
* public static FileDataStore migrate(FileCredentialStore credentialStore, File dataDirectory)
179179
* throws IOException {
180180
* FileDataStore dataStore = new FileDataStore(dataDirectory);
181181
* credentialStore.migrateTo(dataStore);
182182
* return dataStore;
183183
* }
184-
* </pre>
184+
* }</pre>
185185
*
186186
* @param dataStoreFactory file data store factory
187187
* @throws IOException

‎google-oauth-client-servlet/src/main/java/com/google/api/client/extensions/servlet/auth/oauth2/AbstractAuthorizationCodeCallbackServlet.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
*
4141
* <p>Sample usage:
4242
*
43-
* <pre>
43+
* <pre>{@code
4444
* public class ServletCallbackSample extends AbstractAuthorizationCodeCallbackServlet {
4545
*
4646
* &#64;Override
@@ -81,7 +81,7 @@
8181
* // return user ID
8282
* }
8383
* }
84-
* </pre>
84+
* }</pre>
8585
*
8686
* @since 1.7
8787
* @author Yaniv Inbar

‎google-oauth-client-servlet/src/main/java/com/google/api/client/extensions/servlet/auth/oauth2/AbstractAuthorizationCodeServlet.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
*
5050
* <p>Sample usage:
5151
*
52-
* <pre>
52+
* <pre>{@code
5353
* public class ServletSample extends AbstractAuthorizationCodeServlet {
5454
*
5555
* &#64;Override
@@ -83,7 +83,7 @@
8383
* // return user ID
8484
* }
8585
* }
86-
* </pre>
86+
* }</pre>
8787
*
8888
* @since 1.7
8989
* @author Yaniv Inbar

‎google-oauth-client-servlet/src/main/java/com/google/api/client/extensions/servlet/auth/oauth2/jakarta/AbstractAuthorizationCodeCallbackServlet.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
*
4141
* <p>Sample usage:
4242
*
43-
* <pre>
43+
* <pre>{@code
4444
* public class ServletCallbackSample extends AbstractAuthorizationCodeCallbackServlet {
4545
*
4646
* &#64;Override
@@ -81,7 +81,7 @@
8181
* // return user ID
8282
* }
8383
* }
84-
* </pre>
84+
* }</pre>
8585
*
8686
* @since 1.36.0
8787
*/

‎google-oauth-client-servlet/src/main/java/com/google/api/client/extensions/servlet/auth/oauth2/jakarta/AbstractAuthorizationCodeServlet.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
*
5050
* <p>Sample usage:
5151
*
52-
* <pre>
52+
* <pre>{@code
5353
* public class ServletSample extends AbstractAuthorizationCodeServlet {
5454
*
5555
* &#64;Override
@@ -83,7 +83,7 @@
8383
* // return user ID
8484
* }
8585
* }
86-
* </pre>
86+
* }</pre>
8787
*
8888
* @since 1.36.0
8989
*/

‎google-oauth-client/src/main/java/com/google/api/client/auth/oauth/OAuthParameters.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@
4141
*
4242
* <p>Sample usage, taking advantage that this class implements {@link HttpRequestInitializer}:
4343
*
44-
* <pre>
44+
* <pre>{@code
4545
* public static HttpRequestFactory createRequestFactory(HttpTransport transport) {
4646
* OAuthParameters parameters = new OAuthParameters();
4747
* // ...
4848
* return transport.createRequestFactory(parameters);
4949
* }
50-
* </pre>
50+
* }</pre>
5151
*
5252
* <p>If you have a custom request initializer, take a look at the sample usage for {@link
5353
* HttpExecuteInterceptor}, which this class also implements.

‎google-oauth-client/src/main/java/com/google/api/client/auth/oauth2/AuthorizationCodeFlow.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -174,15 +174,15 @@ protected AuthorizationCodeFlow(Builder builder) {
174174
* the {@link #getAuthorizationServerEncodedUrl()}, {@link #getClientId()}, and {@link
175175
* #getScopes()}. Sample usage:
176176
*
177-
* <pre>
177+
* <pre>{@code
178178
* private AuthorizationCodeFlow flow;
179179
*
180180
* public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException {
181181
* String url = flow.newAuthorizationUrl().setState("xyz")
182182
* .setRedirectUri("https://client.example.com/rd").build();
183183
* response.sendRedirect(url);
184184
* }
185-
* </pre>
185+
* }</pre>
186186
*/
187187
public AuthorizationCodeRequestUrl newAuthorizationUrl() {
188188
AuthorizationCodeRequestUrl url =

‎google-oauth-client/src/main/java/com/google/api/client/auth/oauth2/AuthorizationCodeRequestUrl.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@
3131
*
3232
* <p>Sample usage for a web application:
3333
*
34-
* <pre>
34+
* <pre>{@code
3535
* public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException {
3636
* String url =
3737
* new AuthorizationCodeRequestUrl("https://server.example.com/authorize", "s6BhdRkqt3")
3838
* .setState("xyz").setRedirectUri("https://client.example.com/rd").build();
3939
* response.sendRedirect(url);
4040
* }
41-
* </pre>
41+
* }</pre>
4242
*
4343
* <p>Implementation is not thread-safe.
4444
*

‎google-oauth-client/src/main/java/com/google/api/client/auth/oauth2/AuthorizationCodeResponseUrl.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
*
2828
* <p>Sample usage:
2929
*
30-
* <pre>
30+
* <pre>{@code
3131
* public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException {
3232
* StringBuffer fullUrlBuf = request.getRequestURL();
3333
* if (request.getQueryString() != null) {
@@ -42,7 +42,7 @@
4242
* // request access token using authResponse.getCode()...
4343
* }
4444
* }
45-
* </pre>
45+
* }</pre>
4646
*
4747
* <p>Implementation is not thread-safe.
4848
*

‎google-oauth-client/src/main/java/com/google/api/client/auth/oauth2/AuthorizationCodeTokenRequest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
*
3535
* <p>Sample usage:
3636
*
37-
* <pre>
37+
* <pre>{@code
3838
* static void requestAccessToken() throws IOException {
3939
* try {
4040
* TokenResponse response =
@@ -58,7 +58,7 @@
5858
* }
5959
* }
6060
* }
61-
* </pre>
61+
* }</pre>
6262
*
6363
* <p>Some OAuth 2.0 providers don't support {@link BasicAuthentication} but instead support {@link
6464
* ClientParametersAuthentication}. In the above sample code, simply replace the class name and it

‎google-oauth-client/src/main/java/com/google/api/client/auth/oauth2/AuthorizationRequestUrl.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@
2727
*
2828
* <p>Sample usage for a web application:
2929
*
30-
* <pre>
30+
* <pre>{@code
3131
* public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException {
3232
* String url = new AuthorizationRequestUrl(
3333
* "https://server.example.com/authorize", "s6BhdRkqt3", Arrays.asList("code")).setState("xyz")
3434
* .setRedirectUri("https://client.example.com/rd").build();
3535
* response.sendRedirect(url);
3636
* }
37-
* </pre>
37+
* }</pre>
3838
*
3939
* <p>Implementation is not thread-safe.
4040
*

‎google-oauth-client/src/main/java/com/google/api/client/auth/oauth2/BrowserClientRequestUrl.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@
2727
*
2828
* <p>Sample usage for a web application:
2929
*
30-
* <pre>
30+
* <pre>{@code
3131
* public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException {
3232
* String url = new BrowserClientRequestUrl(
3333
* "https://server.example.com/authorize", "s6BhdRkqt3").setState("xyz")
3434
* .setRedirectUri("https://client.example.com/cb").build();
3535
* response.sendRedirect(url);
3636
* }
37-
* </pre>
37+
* }</pre>
3838
*
3939
* <p>Implementation is not thread-safe.
4040
*

‎google-oauth-client/src/main/java/com/google/api/client/auth/oauth2/ClientCredentialsTokenRequest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
*
3333
* <p>Sample usage:
3434
*
35-
* <pre>
35+
* <pre>{@code
3636
* static void requestAccessToken() throws IOException {
3737
* try {
3838
* TokenResponse response =
@@ -56,7 +56,7 @@
5656
* }
5757
* }
5858
* }
59-
* </pre>
59+
* }</pre>
6060
*
6161
* <p>Some OAuth 2.0 providers don't support {@link BasicAuthentication} but instead support {@link
6262
* ClientParametersAuthentication}. In the above sample code, simply replace the class name and it

‎google-oauth-client/src/main/java/com/google/api/client/auth/oauth2/ClientParametersAuthentication.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
*
3434
* <p>Sample usage:
3535
*
36-
* <pre>
36+
* <pre>{@code
3737
* static void requestAccessToken() throws IOException {
3838
* try {
3939
* TokenResponse response = new AuthorizationCodeTokenRequest(new NetHttpTransport(),
@@ -56,7 +56,7 @@
5656
* }
5757
* }
5858
* }
59-
* </pre>
59+
* }</pre>
6060
*
6161
* <p>Implementation is immutable and thread-safe.
6262
*

‎google-oauth-client/src/main/java/com/google/api/client/auth/oauth2/Credential.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
*
4444
* <p>Sample usage:
4545
*
46-
* <pre>
46+
* <pre>{@code
4747
* public static Credential createCredentialWithAccessTokenOnly(
4848
* HttpTransport transport, JsonFactory jsonFactory, TokenResponse tokenResponse) {
4949
* return new Credential(BearerToken.authorizationHeaderAccessMethod()).setFromTokenResponse(
@@ -61,7 +61,7 @@
6161
* .build()
6262
* .setFromTokenResponse(tokenResponse);
6363
* }
64-
* </pre>
64+
* }</pre>
6565
*
6666
* <p>If you need to persist the access token in a data store, use {@link DataStoreFactory} and
6767
* {@link Builder#addRefreshListener(CredentialRefreshListener)} with {@link

‎google-oauth-client/src/main/java/com/google/api/client/auth/oauth2/DataStoreCredentialRefreshListener.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828
* <p>It needs to be added as a refresh listener using {@link
2929
* Credential.Builder#addRefreshListener}. Sample usage:
3030
*
31-
* <pre>
31+
* <pre>{@code
3232
* static void addDataStoreCredentialRefreshListener(
3333
* Credential.Builder credentialBuilder, String userId, DataStoreFactory dataStoreFactory)
3434
* throws IOException {
3535
* credentialBuilder.addRefreshListener(
3636
* new DataStoreCredentialRefreshListener(userId, dataStoreFactory));
3737
* }
38-
* </pre>
38+
* }</pre>
3939
*
4040
* @since 1.6
4141
* @author Yaniv Inbar

‎google-oauth-client/src/main/java/com/google/api/client/auth/oauth2/PasswordTokenRequest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
*
3636
* <p>Sample usage:
3737
*
38-
* <pre>
38+
* <pre>{@code
3939
* static void requestAccessToken() throws IOException {
4040
* try {
4141
* TokenResponse response =
@@ -59,7 +59,7 @@
5959
* }
6060
* }
6161
* }
62-
* </pre>
62+
* }</pre>
6363
*
6464
* <p>Some OAuth 2.0 providers don't support {@link BasicAuthentication} but instead support {@link
6565
* ClientParametersAuthentication}. In the above sample code, simply replace the class name and it

‎google-oauth-client/src/main/java/com/google/api/client/auth/oauth2/RefreshTokenRequest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
*
3535
* <p>Sample usage:
3636
*
37-
* <pre>
37+
* <pre>{@code
3838
* static void refreshAccessToken() throws IOException {
3939
* try {
4040
* TokenResponse response =
@@ -57,7 +57,7 @@
5757
* }
5858
* }
5959
* }
60-
* </pre>
60+
* }</pre>
6161
*
6262
* <p>Some OAuth 2.0 providers don't support {@link BasicAuthentication} but instead support {@link
6363
* ClientParametersAuthentication}. In the above sample code, simply replace the class name and it

‎google-oauth-client/src/main/java/com/google/api/client/auth/openidconnect/IdTokenResponse.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@
3232
*
3333
* <p>Implementation is not thread-safe. Sample usage:
3434
*
35-
* <pre>
35+
* <pre>{@code
3636
* static JsonWebSignature executeIdToken(TokenRequest tokenRequest) throws IOException {
3737
* IdTokenResponse idTokenResponse = IdTokenResponse.execute(tokenRequest);
3838
* return idTokenResponse.parseIdToken();
3939
* }
40-
* </pre>
40+
* }</pre>
4141
*
4242
* @since 1.7
4343
* @author Yaniv Inbar

0 commit comments

Comments
 (0)
Please sign in to comment.