Interface TmaAddressDao
- All Superinterfaces:
de.hybris.platform.servicelayer.user.daos.AddressDao
- All Known Implementing Classes:
DefaultTmaAddressDao
public interface TmaAddressDao
extends de.hybris.platform.servicelayer.user.daos.AddressDao
Data Access Object for the
AddressModel object.- Since:
- 1911
-
Method Summary
Modifier and TypeMethodDescriptionfindAddress(String addressId) Gets an Address for a given id.findAddressesByOffsetAndLimit(Integer offset, Integer limit) Get Addresses filtered by offset and limitfindAddressValidationsByOffsetAndLimit(Integer offset, Integer limit) Get Address Validations filtered by offset and limitMethods inherited from interface de.hybris.platform.servicelayer.user.daos.AddressDao
findAddressesForOwner
-
Method Details
-
findAddress
Gets an Address for a given id.- Parameters:
addressId- the id of the requested address.- Returns:
- the Address if found.
- Throws:
de.hybris.platform.servicelayer.exceptions.ModelNotFoundException- if no address is found
-
findAddressesByOffsetAndLimit
Get Addresses filtered by offset and limit- Parameters:
offset- the offsetlimit- the limit- Returns:
- the list of Addresses found
-
findAddressValidationsByOffsetAndLimit
Get Address Validations filtered by offset and limit- Parameters:
offset- the offsetlimit- the limit- Returns:
- the list of Address Validations found
-