Skip to content

Commit b0a2989

Browse files
committed
Fixed class name in code samples
1 parent 595a490 commit b0a2989

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -623,14 +623,14 @@ ServiceApi serviceApi = new ServiceApi(client);
623623
//
624624
```
625625

626-
##### Usage of the `OkHttpFieldLevelEncryptionInterceptor` (OpenAPI Generator 4.x.y)
626+
##### Usage of the `OkHttpEncryptionInterceptor` (OpenAPI Generator 4.x.y)
627627
```java
628628
ApiClient client = new ApiClient();
629629
client.setBasePath("https://sandbox.api.mastercard.com");
630630
client.setHttpClient(
631631
client.getHttpClient()
632632
.newBuilder()
633-
.addInterceptor(OkHttpFieldLevelEncryptionInterceptor.from(config))
633+
.addInterceptor(OkHttpEncryptionInterceptor.from(config))
634634
.addInterceptor(new OkHttpOAuth1Interceptor(consumerKey, signingKey))
635635
.build()
636636
);

0 commit comments

Comments
 (0)