We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 595a490 commit b0a2989Copy full SHA for b0a2989
README.md
@@ -623,14 +623,14 @@ ServiceApi serviceApi = new ServiceApi(client);
623
// …
624
```
625
626
-##### Usage of the `OkHttpFieldLevelEncryptionInterceptor` (OpenAPI Generator 4.x.y)
+##### Usage of the `OkHttpEncryptionInterceptor` (OpenAPI Generator 4.x.y)
627
```java
628
ApiClient client = new ApiClient();
629
client.setBasePath("https://sandbox.api.mastercard.com");
630
client.setHttpClient(
631
client.getHttpClient()
632
.newBuilder()
633
- .addInterceptor(OkHttpFieldLevelEncryptionInterceptor.from(config))
+ .addInterceptor(OkHttpEncryptionInterceptor.from(config))
634
.addInterceptor(new OkHttpOAuth1Interceptor(consumerKey, signingKey))
635
.build()
636
);
0 commit comments