Interface CabinClassDao
- All Superinterfaces:
de.hybris.platform.servicelayer.internal.dao.Dao
- All Known Implementing Classes:
DefaultCabinClassDao
public interface CabinClassDao
extends de.hybris.platform.servicelayer.internal.dao.Dao
Interface that exposes Cabin Class specific DAO services
-
Method Summary
Modifier and TypeMethodDescriptionfindCabinClass(Integer cabinClassIndex) Dao method which returns CabinClassModel for the given cabinclass index.findCabinClass(String cabinCode) Dao method which returns CabinClassModel for the given cabin code.DAO service which returns a list of CabinClassModel typesfindCabinClassFromBundleTemplate(String bundleTemplate) Dao method which returns CabinClassModel for the given bundleTemplate.
-
Method Details
-
findCabinClasses
List<CabinClassModel> findCabinClasses()DAO service which returns a list of CabinClassModel types- Returns:
- SearchResult
list
-
findCabinClass
Dao method which returns CabinClassModel for the given cabin code.- Parameters:
cabinCode- string representing cabin code.- Returns:
- CabinClassModel object.
-
findCabinClass
Dao method which returns CabinClassModel for the given cabinclass index.- Parameters:
cabinClassIndex- string representing cabinclass index.- Returns:
- CabinClassModel object.
-
findCabinClassFromBundleTemplate
Dao method which returns CabinClassModel for the given bundleTemplate.- Parameters:
bundleTemplate- string representing bundleTemplate.- Returns:
- CabinClassModel object.
-