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

org.dataloader.BatchLoaderContextProvider Maven / Gradle / Ivy

There is a newer version: 2022-09-12T23-25-35-08559ba
Show newest version
package org.dataloader;

import org.dataloader.annotations.PublicSpi;

/**
 * A BatchLoaderContextProvider is used by the {@link org.dataloader.DataLoader} code to
 * provide overall calling context to the {@link org.dataloader.BatchLoader} call.  A common use
 * case is for propagating user security credentials or database connection parameters for example.
 */
@PublicSpi
public interface BatchLoaderContextProvider {
    /**
     * @return a context object that may be needed in batch load calls
     */
    Object getContext();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy