/**
  * Set the {@link UserGroupInformation} for the current thread
  *
  * @deprecated Use {@link #setCurrentUser(UserGroupInformation)}
  */
 @Deprecated
 public static void setCurrentUGI(UserGroupInformation ugi) {
   setCurrentUser(ugi);
 }