HADOOP-14760. Add missing override to LoadBalancingKMSClientProvider.

This commit is contained in:
Xiao Chen 2017-08-11 11:41:16 -07:00
parent 582648befa
commit 07fff43f4a

View File

@ -292,7 +292,9 @@ public KeyVersion call(KMSClientProvider provider)
}
}
public EncryptedKeyVersion reencryptEncryptedKey(EncryptedKeyVersion ekv)
@Override
public EncryptedKeyVersion reencryptEncryptedKey(
final EncryptedKeyVersion ekv)
throws IOException, GeneralSecurityException {
try {
return doOp(new ProviderCallable<EncryptedKeyVersion>() {