java.lang.Object
ubic.gemma.persistence.service.AbstractDao<Contact>
ubic.gemma.persistence.service.common.auditAndSecurity.ContactDaoImpl
All Implemented Interfaces:
BaseDao<Contact>, ContactDao

@Repository public class ContactDaoImpl extends AbstractDao<Contact> implements ContactDao
Author:
pavlidis
See Also:
  • Constructor Details

    • ContactDaoImpl

      @Autowired public ContactDaoImpl(SessionFactory sessionFactory)
  • Method Details

    • find

      public Contact find(Contact contact)
      Description copied from interface: BaseDao
      Does a look up for the given entity in the persistent storage, usually looking for a specific identifier ( either id or a string property).
      Specified by:
      find in interface BaseDao<Contact>
      Overrides:
      find in class AbstractDao<Contact>
      Parameters:
      contact - the entity to look for.
      Returns:
      an entity that was found in the persistent storage, or null if no such entity was found.