Class DefaultCountryDao
- java.lang.Object
-
- de.hybris.platform.servicelayer.internal.dao.DefaultGenericDao<CountryModel>
-
- de.hybris.platform.servicelayer.i18n.daos.impl.DefaultCountryDao
-
- All Implemented Interfaces:
CountryDao
,GenericDao<CountryModel>
public class DefaultCountryDao extends DefaultGenericDao<CountryModel> implements CountryDao
Implementation of theCountryModel
access logic.
-
-
Constructor Summary
Constructors Constructor Description DefaultCountryDao()
Exposed to create dao instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<CountryModel>
findCountries()
Finds all availableCountryModel
instances.java.util.List<CountryModel>
findCountriesByCode(java.lang.String countryCode)
FindsCountryModel
instances full filling the country code requirement.-
Methods inherited from class de.hybris.platform.servicelayer.internal.dao.DefaultGenericDao
find, find, find, find, find, getFlexibleSearchService, setFlexibleSearchService
-
-
-
-
Method Detail
-
findCountries
public java.util.List<CountryModel> findCountries()
Description copied from interface:CountryDao
Finds all availableCountryModel
instances.- Specified by:
findCountries
in interfaceCountryDao
-
findCountriesByCode
public java.util.List<CountryModel> findCountriesByCode(java.lang.String countryCode)
Description copied from interface:CountryDao
FindsCountryModel
instances full filling the country code requirement.- Specified by:
findCountriesByCode
in interfaceCountryDao
-
-