/**
  * Sets the {@link org.apache.accumulo.core.security.Authorizations} used to scan. Must be a
  * subset of the user's authorization. Defaults to the empty set.
  *
  * @param job the Hadoop job instance to be configured
  * @param auths the user's authorizations
  * @since 1.5.0
  */
 public static void setScanAuthorizations(JobConf job, Authorizations auths) {
   InputConfigurator.setScanAuthorizations(CLASS, job, auths);
 }