Skip to content

Commit b2b2e43

Browse files
1 parent 94e13b9 commit b2b2e43

File tree

11 files changed

+14
-42
lines changed

11 files changed

+14
-42
lines changed

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

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -99,19 +99,13 @@ protected final HttpTransport getHttpTransport() {
9999
*/
100100
protected abstract PersistenceManagerFactory getPersistenceManagerFactory();
101101

102-
/**
103-
* @return Specific ThreeLeggedFlow type that this callback should retreieve and complete.
104-
*/
102+
/** @return Specific ThreeLeggedFlow type that this callback should retreieve and complete. */
105103
protected abstract Class<? extends ThreeLeggedFlow> getConcreteFlowType();
106104

107-
/**
108-
* @return Url to redirect the user to upon a successful credential exchange.
109-
*/
105+
/** @return Url to redirect the user to upon a successful credential exchange. */
110106
protected abstract String getSuccessRedirectUrl();
111107

112-
/**
113-
* @return Url to redirect the user to upon failure.
114-
*/
108+
/** @return Url to redirect the user to upon failure. */
115109
protected abstract String getDeniedRedirectUrl();
116110

117111
/**

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,7 @@ public abstract class AbstractOAuthGetToken extends GenericUrl {
5050
/** {@code true} for POST request or the default {@code false} for GET request. */
5151
protected boolean usePost;
5252

53-
/**
54-
* @param authorizationServerUrl encoded authorization server URL
55-
*/
53+
/** @param authorizationServerUrl encoded authorization server URL */
5654
protected AbstractOAuthGetToken(String authorizationServerUrl) {
5755
super(authorizationServerUrl);
5856
}

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,7 @@ public class OAuthAuthorizeTemporaryTokenUrl extends GenericUrl {
4343
@Key("oauth_token")
4444
public String temporaryToken;
4545

46-
/**
47-
* @param encodedUserAuthorizationUrl encoded user authorization URL
48-
*/
46+
/** @param encodedUserAuthorizationUrl encoded user authorization URL */
4947
public OAuthAuthorizeTemporaryTokenUrl(String encodedUserAuthorizationUrl) {
5048
super(encodedUserAuthorizationUrl);
5149
}

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,7 @@ public class OAuthGetAccessToken extends AbstractOAuthGetToken {
4343
*/
4444
public String verifier;
4545

46-
/**
47-
* @param authorizationServerUrl encoded authorization server URL
48-
*/
46+
/** @param authorizationServerUrl encoded authorization server URL */
4947
public OAuthGetAccessToken(String authorizationServerUrl) {
5048
super(authorizationServerUrl);
5149
}

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,7 @@ public class OAuthGetTemporaryToken extends AbstractOAuthGetToken {
3838
*/
3939
public String callback;
4040

41-
/**
42-
* @param authorizationServerUrl encoded authorization server URL
43-
*/
41+
/** @param authorizationServerUrl encoded authorization server URL */
4442
public OAuthGetTemporaryToken(String authorizationServerUrl) {
4543
super(authorizationServerUrl);
4644
}

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,7 @@ public class AuthorizationCodeResponseUrl extends GenericUrl {
8383
@Key("error_uri")
8484
private String errorUri;
8585

86-
/**
87-
* @param encodedResponseUrl encoded authorization code response URL
88-
*/
86+
/** @param encodedResponseUrl encoded authorization code response URL */
8987
public AuthorizationCodeResponseUrl(String encodedResponseUrl) {
9088
super(encodedResponseUrl);
9189
// either error or code but not both

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,7 @@ public final class StoredCredential implements Serializable {
5555

5656
public StoredCredential() {}
5757

58-
/**
59-
* @param credential existing credential to copy from
60-
*/
58+
/** @param credential existing credential to copy from */
6159
public StoredCredential(Credential credential) {
6260
setAccessToken(credential.getAccessToken());
6361
setRefreshToken(credential.getRefreshToken());

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,7 @@ public IdTokenVerifier() {
7474
this(new Builder());
7575
}
7676

77-
/**
78-
* @param builder builder
79-
*/
77+
/** @param builder builder */
8078
protected IdTokenVerifier(Builder builder) {
8179
clock = builder.clock;
8280
acceptableTimeSkewSeconds = builder.acceptableTimeSkewSeconds;

‎samples/dailymotion-cmdline-sample/src/main/java/com/google/api/services/samples/dailymotion/cmdline/DailyMotionUrl.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,12 @@ public DailyMotionUrl(String encodedUrl) {
3030
super(encodedUrl);
3131
}
3232

33-
/**
34-
* @return the fields
35-
*/
33+
/** @return the fields */
3634
public String getFields() {
3735
return fields;
3836
}
3937

40-
/**
41-
* @param fields the fields to set
42-
*/
38+
/** @param fields the fields to set */
4339
public void setFields(String fields) {
4440
this.fields = fields;
4541
}

‎samples/dailymotion-cmdline-sample/src/main/java/com/google/api/services/samples/dailymotion/cmdline/Video.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@
1717
import com.google.api.client.util.Key;
1818
import java.util.List;
1919

20-
/**
21-
* @author Yaniv Inbar
22-
*/
20+
/** @author Yaniv Inbar */
2321
public class Video {
2422

2523
@Key public String id;

‎samples/dailymotion-cmdline-sample/src/main/java/com/google/api/services/samples/dailymotion/cmdline/VideoFeed.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@
1717
import com.google.api.client.util.Key;
1818
import java.util.List;
1919

20-
/**
21-
* @author Yaniv Inbar
22-
*/
20+
/** @author Yaniv Inbar */
2321
public class VideoFeed {
2422

2523
@Key public List<Video> list;

0 commit comments

Comments
 (0)