MikeThomsen commented on a change in pull request #4173:
URL: https://github.com/apache/nifi/pull/4173#discussion_r431221709
##########
File path:
nifi-nar-bundles/nifi-standard-services/nifi-oauth2-provider-api/src/main/java/org/apache/nifi/oauth2/AccessToken.java
##########
@@ -0,0 +1,54 @@
+package org.apache.nifi.oauth2;
+
+public class AccessToken {
+ private String accessToken;
+ private String refreshToken;
+ private String tokenType;
+ private Integer expires;
+ private String scope;
+
+ private Long fetchTime;
+
+ public AccessToken() {}
Review comment:
That was put there to appease Sonarqube for our client. I can remove it.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]