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

Conflicts:
	hadoop-common-project/hadoop-common/CHANGES.txt

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1619516 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Alejandro Abdelnur 2014-08-21 18:58:43 +00:00
parent bd3cff6027
commit bb0a609e19
2 changed files with 6 additions and 3 deletions

View File

@ -108,6 +108,9 @@ Release 2.6.0 - UNRELEASED
HADOOP-10430. KeyProvider Metadata should have an optional description, HADOOP-10430. KeyProvider Metadata should have an optional description,
there should be a method to retrieve the metadata from all keys. (tucu) there should be a method to retrieve the metadata from all keys. (tucu)
HADOOP-10431. Change visibility of KeyStore.Options getter methods to
public. (tucu)
OPTIMIZATIONS OPTIMIZATIONS
HADOOP-10838. Byte array native checksumming. (James Thomas via todd) HADOOP-10838. Byte array native checksumming. (James Thomas via 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;
} }
} }