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

com.griddynamics.qa.datapool.FetcherConfig Maven / Gradle / Ivy

Go to download

Test Data Pool tool is intended to mitigate risks of running automated tests against multiple unstable “FullDB” environments having unpredictable set of data.

The newest version!
package com.griddynamics.qa.datapool;

import java.util.Map;
import java.util.UUID;

/**
 * A fetcher's config container object.
 *
 * @author ELozovan
 * Created: 2016-06-22.
 */
public class FetcherConfig {
    private String name = UUID.randomUUID().toString();
    private Map properties;

    public String getName() {
        return name;
    }

    public void setName(String fetcherName) {
        this.name = fetcherName;
    }

    public Map getProperties() {
        return properties;
    }

    public void setProperties(Map newProperties) {
        this.properties = newProperties;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy