HADOOP-10431. Change visibility of KeyStore.Options getter methods to public. (tucu)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1586732 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Alejandro Abdelnur 2014-04-11 18:06:05 +00:00
parent 350ab4d246
commit 51a2cec8c0
2 changed files with 5 additions and 3 deletions

View File

@ -317,6 +317,8 @@ Trunk (Unreleased)
HADOOP-10488. TestKeyProviderFactory fails randomly. (tucu) HADOOP-10488. TestKeyProviderFactory fails randomly. (tucu)
HADOOP-10431. Change visibility of KeyStore.Options getter methods to public. (tucu)
OPTIMIZATIONS OPTIMIZATIONS
HADOOP-7761. Improve the performance of raw comparisons. (todd) HADOOP-7761. Improve the performance of raw comparisons. (todd)

View File

@ -260,15 +260,15 @@ public abstract class KeyProvider {
return this; return this;
} }
protected String getCipher() { public String getCipher() {
return cipher; return cipher;
} }
protected int getBitLength() { public int getBitLength() {
return bitLength; return bitLength;
} }
protected String getDescription() { public String getDescription() {
return description; return description;
} }
} }