@Override
 public List<Address> createAddressListing(
     Integer userId,
     String search,
     String orderBy,
     SortOrder orderDir,
     int firstResult,
     int maxResults) {
   return addressDAO.createAddressListing(
       userId, category, checkOwner, search, orderBy, orderDir, firstResult, maxResults);
 }