java.lang.Object
ubic.gemma.persistence.service.AbstractDao<Compound>
ubic.gemma.persistence.service.expression.biomaterial.CompoundDaoImpl
All Implemented Interfaces:
BaseDao<Compound>, CompoundDao

@Repository public class CompoundDaoImpl extends AbstractDao<Compound> implements CompoundDao

Base Spring DAO Class: is able to create, update, remove, load, and find objects of type ubic.gemma.model.expression.biomaterial.Compound.

See Also:
  • Constructor Details

    • CompoundDaoImpl

      @Autowired public CompoundDaoImpl(SessionFactory sessionFactory)
  • Method Details

    • find

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