Skip to content

Commit 3c97245

Browse files
matthewstevenson88ejona86
authored andcommitted
util: Add ExperimentalApi to AdvancedTlsX509KeyManager
There may be reordering of `updateIdentityCredentialsFromFile()` arguments. Avoid making it stable while it is being evaluated.
1 parent c11b560 commit 3c97245

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

util/src/main/java/io/grpc/util/AdvancedTlsX509KeyManager.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
import static com.google.common.base.Preconditions.checkNotNull;
2020

21+
import io.grpc.ExperimentalApi;
2122
import java.io.File;
2223
import java.io.FileInputStream;
2324
import java.io.IOException;
@@ -39,6 +40,7 @@
3940
* AdvancedTlsX509KeyManager is an {@code X509ExtendedKeyManager} that allows users to configure
4041
* advanced TLS features, such as private key and certificate chain reloading.
4142
*/
43+
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/8024")
4244
public final class AdvancedTlsX509KeyManager extends X509ExtendedKeyManager {
4345
private static final Logger log = Logger.getLogger(AdvancedTlsX509KeyManager.class.getName());
4446
// Minimum allowed period for refreshing files with credential information.

0 commit comments

Comments
 (0)