Skip to content

Commit 7c59d00

Browse files
committed
Correct beta import
1 parent 4f87719 commit 7c59d00

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

cloudplatform/connectivity-oauth/pom.xml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,10 @@
134134
<groupId>org.apache.commons</groupId>
135135
<artifactId>commons-lang3</artifactId>
136136
</dependency>
137+
<dependency>
138+
<groupId>com.google.guava</groupId>
139+
<artifactId>guava</artifactId>
140+
</dependency>
137141
<!-- scope "provided" -->
138142
<dependency>
139143
<groupId>org.projectlombok</groupId>
@@ -192,11 +196,6 @@
192196
<artifactId>testutil</artifactId>
193197
<scope>test</scope>
194198
</dependency>
195-
<dependency>
196-
<groupId>com.google.guava</groupId>
197-
<artifactId>guava</artifactId>
198-
<scope>test</scope>
199-
</dependency>
200199
</dependencies>
201200
<build>
202201
<plugins>

cloudplatform/connectivity-oauth/src/main/java/com/sap/cloud/sdk/cloudplatform/connectivity/OAuth2Options.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import javax.annotation.Nonnull;
99
import javax.annotation.Nullable;
1010

11+
import com.google.common.annotations.Beta;
1112
import com.sap.cloud.sdk.cloudplatform.connectivity.ServiceBindingDestinationOptions.OptionsEnhancer;
1213
import com.sap.cloud.sdk.cloudplatform.resilience.ResilienceConfiguration.TimeLimiterConfiguration;
1314

@@ -268,6 +269,7 @@ public static class TokenRetrievalTimeout implements OptionsEnhancer<TimeLimiter
268269
*
269270
* @since 5.21.0
270271
*/
272+
@Beta
271273
@Getter
272274
@RequiredArgsConstructor( staticName = "of" )
273275
public static class TokenCacheParameters implements OptionsEnhancer<TokenCacheParameters>

0 commit comments

Comments
 (0)