All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bedework.calfacade.indexing.BwIndexerParams Maven / Gradle / Ivy

The newest version!
/* ********************************************************************
    Appropriate copyright notice
*/
package org.bedework.calfacade.indexing;

import org.bedework.calfacade.configs.Configurations;
import org.bedework.calfacade.util.AccessChecker;

/**
 * Everything except the doctype and index name
 * User: mike Date: 9/5/18 Time: 10:04
 */
public class BwIndexerParams {
  public final Configurations configs;
  public final boolean publick;
  public final String principalHref;
  public final boolean superUser;
  public final AccessChecker accessCheck;

  public BwIndexerParams(final Configurations configs,
                         final boolean publick,
                         final String principalHref,
                         final boolean superUser,
                         final AccessChecker accessCheck) {
    this.configs = configs;
    this.publick = publick;
    this.principalHref = principalHref;
    this.superUser = superUser;
    this.accessCheck = accessCheck;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy