java.lang.Object
ubic.gemma.persistence.service.AbstractDao<Person>
ubic.gemma.persistence.service.common.auditAndSecurity.PersonDaoImpl
All Implemented Interfaces:
BaseDao<Person>, PersonDao

@Repository @Deprecated public class PersonDaoImpl extends AbstractDao<Person> implements PersonDao
Deprecated.
as Person is deprecated

Base Spring DAO Class: is able to create, update, remove, load, and find objects of type ubic.gemma.model.common.auditAndSecurity.Person.

See Also:
  • Constructor Details

    • PersonDaoImpl

      @Autowired public PersonDaoImpl(SessionFactory sessionFactory)
      Deprecated.
  • Method Details

    • find

      public Person find(Person person)
      Deprecated.
      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<Person>
      Overrides:
      find in class AbstractDao<Person>
      Parameters:
      person - the entity to look for.
      Returns:
      an entity that was found in the persistent storage, or null if no such entity was found.