HADOOP-17644. Add back the exceptions removed by HADOOP-17432 for compatibility. Contributed by Quan Li.

This commit is contained in:
Ayush Saxena 2021-05-09 03:40:08 +05:30
parent 1326cad66a
commit 2a95ba29bb
1 changed files with 6 additions and 1 deletions

View File

@ -79,11 +79,16 @@ private static Oid getNumericOidInstance(String oidName) {
*
* @return Oid instance
* @param oidName The oid Name
* @throws ClassNotFoundException for backward compatibility.
* @throws GSSException for backward compatibility.
* @throws NoSuchFieldException if the input is not supported.
* @throws IllegalAccessException for backward compatibility.
*
*/
@Deprecated
public static Oid getOidInstance(String oidName)
throws NoSuchFieldException {
throws ClassNotFoundException, GSSException, NoSuchFieldException,
IllegalAccessException {
switch (oidName) {
case "GSS_SPNEGO_MECH_OID":
return GSS_SPNEGO_MECH_OID;