Interface PmOrganizationDao
- All Superinterfaces:
de.hybris.platform.servicelayer.internal.dao.GenericDao<PmOrganizationModel>
- All Known Implementing Classes:
DefaultPmOrganizationDao
@Deprecated(since="2208")
public interface PmOrganizationDao
extends de.hybris.platform.servicelayer.internal.dao.GenericDao<PmOrganizationModel>
Deprecated.
2208
Data access object for
PmOrganizationModels.- Since:
- 2108
-
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Returns the organization for the provided id.getNumberOfOrganizationParties(PmOrganizationFilteringContextData pmOrganizationFilteringContext) Deprecated.Retrieves the total number of organization parties found for a given filtering context.getOrganizationParties(PmOrganizationFilteringContextData pmOrganizationFilteringContext, Integer offset, Integer limit) Deprecated.Retrieves a list ofPmOrganizationModelfor a given filtering context.Methods inherited from interface de.hybris.platform.servicelayer.internal.dao.GenericDao
find, find, find, find, find
-
Method Details
-
findOrganization
Deprecated.Returns the organization for the provided id.- Parameters:
id- The unique identifier of the organization- Returns:
- List of
PmOrganizationModelfor the provided id
-
getOrganizationParties
List<PmOrganizationModel> getOrganizationParties(PmOrganizationFilteringContextData pmOrganizationFilteringContext, Integer offset, Integer limit) Deprecated.Retrieves a list ofPmOrganizationModelfor a given filtering context.- Parameters:
pmOrganizationFilteringContext- the organization party context.offset- the offset.limit- the maximum number of returned parties.- Returns:
- the list of parties found for the given context.
-
getNumberOfOrganizationParties
Integer getNumberOfOrganizationParties(PmOrganizationFilteringContextData pmOrganizationFilteringContext) Deprecated.Retrieves the total number of organization parties found for a given filtering context.- Parameters:
pmOrganizationFilteringContext- the organization party context.- Returns:
- the number of organization parties found.
-