package net.sourceforge.seqware.common.business.impl; import java.util.List; import net.sourceforge.seqware.common.business.LibrarySourceService; import net.sourceforge.seqware.common.dao.LibrarySourceDAO; import net.sourceforge.seqware.common.model.LibrarySource; import net.sourceforge.seqware.common.model.Registration; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; /** * <p> * LibrarySourceServiceImpl class. * </p> * * @author boconnor * @version $Id: $Id */ public class LibrarySourceServiceImpl implements LibrarySourceService { private LibrarySourceDAO dao = null; private static final Log LOG = LogFactory.getLog(LibrarySourceServiceImpl.class); /** * <p> * Constructor for LibrarySourceServiceImpl. * </p> */ public LibrarySourceServiceImpl() { super(); } /** * {@inheritDoc} * * Sets a private member variable with an instance of an implementation of StudyTypeDAO. This method is called by the Spring framework * at run time. * * @see StudyTypeDAO */ @Override public void setLibrarySourceDAO(LibrarySourceDAO dao) { this.dao = dao; } /** {@inheritDoc} */ @Override public List<LibrarySource> list(Registration registration) { return dao.list(registration); } /** {@inheritDoc} */ @Override public LibrarySource findByID(Integer id) { LibrarySource obj = null; if (id != null) { try { obj = dao.findByID(id); } catch (Exception exception) { LOG.error("Cannot find LibrarySource by id " + id); LOG.error(exception.getMessage()); } } return obj; } /** {@inheritDoc} */ @Override public LibrarySource updateDetached(LibrarySource librarySource) { return dao.updateDetached(librarySource); } /** {@inheritDoc} */ @Override public List<LibrarySource> list() { return dao.list(); } }