use of org.cerberus.crud.factory.impl.FactoryCountryEnvDeployType in project cerberus-source by cerberustesting.
the class CountryEnvDeployTypeDAO method loadFromResultSet.
@Override
public CountryEnvDeployType loadFromResultSet(ResultSet rs) throws SQLException {
String system = rs.getString("system");
String country = rs.getString("country");
String environment = rs.getString("environment");
String deployType = rs.getString("deploytype");
String jenkinsAgent = rs.getString("jenkinsAgent");
factoryCountryEnvDeployType = new FactoryCountryEnvDeployType();
return factoryCountryEnvDeployType.create(system, country, environment, deployType, jenkinsAgent);
}
Aggregations