Class ContactDaoImpl

    • Method Detail

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