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

com.marklogic.flux.api.ReadFilesOptions Maven / Gradle / Ivy

There is a newer version: 1.0.0.ea1
Show newest version
/*
 * Copyright © 2024 MarkLogic Corporation. All Rights Reserved.
 */
package com.marklogic.flux.api;

public interface ReadFilesOptions {

    T paths(String... paths);

    T filter(String filter);

    T recursiveFileLookup(boolean value);

    T abortOnReadFailure(boolean value);

    T s3AddCredentials();

    T s3AccessKeyId(String accessKeyId);

    T s3SecretAccessKey(String secretAccessKey);

    T s3Endpoint(String endpoint);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy