
org.bedework.calfacade.indexing.BwIndexerParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bw-calendar-facade Show documentation
Show all versions of bw-calendar-facade Show documentation
Common calendar classes and code for bedework
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