use of org.cerberus.crud.factory.impl.FactoryCountryEnvLink in project cerberus-source by cerberustesting.
the class CountryEnvLinkDAO method loadFromResultSet.
@Override
public CountryEnvLink loadFromResultSet(ResultSet rs) throws SQLException {
String system = rs.getString("system");
String country = rs.getString("country");
String environment = rs.getString("environment");
String systemLink = rs.getString("systemLink");
String countryLink = rs.getString("countryLink");
String environmentLink = rs.getString("environmentLink");
factoryCountryEnvLink = new FactoryCountryEnvLink();
return factoryCountryEnvLink.create(system, country, environment, systemLink, countryLink, environmentLink);
}
Aggregations