Class 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:
    Person
    • Constructor Detail

      • PersonDaoImpl

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

      • 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.