Interface CountryDao
-
- All Known Implementing Classes:
DefaultCountryDao
public interface CountryDaoDao responsible forCountryModelaccess.- Since:
- 4.3
- Spring Bean ID:
- countryDao
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<CountryModel>findCountries()Finds all availableCountryModelinstances.java.util.List<CountryModel>findCountriesByCode(java.lang.String countryCode)FindsCountryModelinstances full filling the country code requirement.
-
-
-
Method Detail
-
findCountries
java.util.List<CountryModel> findCountries()
Finds all availableCountryModelinstances.
-
findCountriesByCode
java.util.List<CountryModel> findCountriesByCode(java.lang.String countryCode)
FindsCountryModelinstances full filling the country code requirement.
-
-