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 Details

    • findAddress

      AddressModel findAddress(String addressId)
      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

      List<AddressModel> findAddressesByOffsetAndLimit(Integer offset, Integer limit)
      Get Addresses filtered by offset and limit
      Parameters:
      offset - the offset
      limit - the limit
      Returns:
      the list of Addresses found
    • findAddressValidationsByOffsetAndLimit

      List<AddressModel> findAddressValidationsByOffsetAndLimit(Integer offset, Integer limit)
      Get Address Validations filtered by offset and limit
      Parameters:
      offset - the offset
      limit - the limit
      Returns:
      the list of Address Validations found