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:
parent
350ab4d246
commit
51a2cec8c0
|
@ -317,6 +317,8 @@ Trunk (Unreleased)
|
|||
|
||||
HADOOP-10488. TestKeyProviderFactory fails randomly. (tucu)
|
||||
|
||||
HADOOP-10431. Change visibility of KeyStore.Options getter methods to public. (tucu)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
HADOOP-7761. Improve the performance of raw comparisons. (todd)
|
||||
|
|
|
@ -260,15 +260,15 @@ public abstract class KeyProvider {
|
|||
return this;
|
||||
}
|
||||
|
||||
protected String getCipher() {
|
||||
public String getCipher() {
|
||||
return cipher;
|
||||
}
|
||||
|
||||
protected int getBitLength() {
|
||||
public int getBitLength() {
|
||||
return bitLength;
|
||||
}
|
||||
|
||||
protected String getDescription() {
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue