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

org.dataloader.stats.context.IncrementLoadErrorCountStatisticsContext Maven / Gradle / Ivy

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

public class IncrementLoadErrorCountStatisticsContext {

    private final K key;
    private final Object callContext;

    public IncrementLoadErrorCountStatisticsContext(K key, Object callContext) {
        this.key = key;
        this.callContext = callContext;
    }

    public K getKey() {
        return key;
    }

    public Object getCallContext() {
        return callContext;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy