Interface PrPartyRoleDao
- All Superinterfaces:
de.hybris.platform.servicelayer.internal.dao.GenericDao<PrPartyRoleModel>
- All Known Implementing Classes:
DefaultPrPartyRoleDao
@Deprecated(since="2208")
public interface PrPartyRoleDao
extends de.hybris.platform.servicelayer.internal.dao.GenericDao<PrPartyRoleModel>
Deprecated.
2208
Data access object for
PrPartyRoleModels.- Since:
- 2108
-
Method Summary
Modifier and TypeMethodDescriptionfindPartyRole(Map<String, ? extends Object> params) Deprecated.Searches for a unique model based on given parameters.getNumberOfPartyRoles(PrPartyRoleFilteringContextData filteringContext) Deprecated.Retrieves the total number of party roles found, filtered by given filtering context.getPartyRoles(PrPartyRoleFilteringContextData filteringContext, Integer offset, Integer limit) Deprecated.Retrieves a list ofPrPartyRoleModelfiltered by a given filtering contextMethods inherited from interface de.hybris.platform.servicelayer.internal.dao.GenericDao
find, find, find, find, find
-
Method Details
-
findPartyRole
Deprecated.Searches for a unique model based on given parameters. If none or multiple models are found, a specific exception will be thrown.- Parameters:
params-Mapcontaining name-value pairs used for identifying the unique model- Returns:
- model for given parameter
-
getPartyRoles
List<PrPartyRoleModel> getPartyRoles(PrPartyRoleFilteringContextData filteringContext, Integer offset, Integer limit) Deprecated.Retrieves a list ofPrPartyRoleModelfiltered by a given filtering context- Parameters:
filteringContext- the filtering contextoffset- the offsetlimit- maximum number of returned party roles- Returns:
- the list of party roles found for given offset, limit and filteringContext
-
getNumberOfPartyRoles
Deprecated.Retrieves the total number of party roles found, filtered by given filtering context.- Parameters:
filteringContext- the filtering context.- Returns:
- the number of party roles found.
-