/connect-service/src/main/java/org/osforce/connect/service/search/impl/SearchProfileServiceImpl.java

http://focus-sns.googlecode.com/ · Java · 36 lines · 22 code · 7 blank · 7 comment · 0 complexity · e6092ad42f51c63c24707bc4e7afb156 MD5 · raw file

  1. package org.osforce.connect.service.search.impl;
  2. import org.osforce.connect.dao.search.SearchProfileDao;
  3. import org.osforce.connect.entity.profile.Profile;
  4. import org.osforce.connect.service.search.SearchProfileService;
  5. import org.osforce.spring4me.dao.Page;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.stereotype.Service;
  8. import org.springframework.transaction.annotation.Transactional;
  9. /**
  10. *
  11. * @author <a href="mailto:haozhonghu@hotmail.com">gavin</a>
  12. * @since 1.1.1
  13. * @create Jun 16, 2011 - 1:06:30 PM
  14. * <a href="http://www.opensourceforce.org">????</a>
  15. */
  16. @Service
  17. @Transactional
  18. public class SearchProfileServiceImpl implements SearchProfileService {
  19. private SearchProfileDao searchProfileDao;
  20. public SearchProfileServiceImpl() {
  21. }
  22. @Autowired
  23. public void setSearchProfileDao(SearchProfileDao searchProfileDao) {
  24. this.searchProfileDao = searchProfileDao;
  25. }
  26. public Page<Profile> searchProfilePage(Page<Profile> page, String title, Long categoryId) {
  27. return searchProfileDao.searchProfilePage(page, title, categoryId);
  28. }
  29. }