Interface CustomerDao
-
- All Superinterfaces:
Dao
- All Known Implementing Classes:
DefaultCustomerDao
public interface CustomerDao extends Dao
Data Access Object for looking up the customer.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CustomerModelfindCustomerByCustomerId(java.lang.String customerId)Finds the customer by the unique customerId
-
-
-
Method Detail
-
findCustomerByCustomerId
CustomerModel findCustomerByCustomerId(java.lang.String customerId)
Finds the customer by the unique customerId- Parameters:
customerId- the unique customerId in UUID format, that represents the customer- Returns:
- The customer found
- Throws:
AmbiguousIdentifierException- If more than one customer was found
-
-