Interface TuaPartyRoleDao

All Superinterfaces:
de.hybris.platform.servicelayer.internal.dao.GenericDao<TuaPartyRoleModel>
All Known Implementing Classes:
DefaultTuaPartyRoleDao

public interface TuaPartyRoleDao extends de.hybris.platform.servicelayer.internal.dao.GenericDao<TuaPartyRoleModel>
Data access object for TuaPartyRoleModels.
Since:
2208
  • Method Details

    • findPartyRole

      TuaPartyRoleModel findPartyRole(Map<String,? extends Object> params)
      Searches for a unique model based on given parameters. If none or multiple models are found, a specific exception will be thrown.
      Parameters:
      params - Map containing name-value pairs used for identifying the unique model
      Returns:
      model for given parameter
    • getPartyRoles

      List<TuaPartyRoleModel> getPartyRoles(PrPartyRoleFilteringContextData filteringContext, Integer offset, Integer limit)
      Retrieves a list of TuaPartyRoleModel filtered by a given filtering context
      Parameters:
      filteringContext - the filtering context
      offset - the offset
      limit - maximum number of returned party roles
      Returns:
      the list of party roles found for given offset, limit and filteringContext
    • getNumberOfPartyRoles

      Integer getNumberOfPartyRoles(PrPartyRoleFilteringContextData filteringContext)
      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.