com.griddynamics.qa.datapool.FetcherConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of data-pool Show documentation
Show all versions of data-pool Show documentation
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;
}
}