com.coherentlogic.fred.client.db.integration.dao.ObservationsRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fred-client-db-int Show documentation
Show all versions of fred-client-db-int Show documentation
Integration of the FRED Client with the h2 database for
testing purposes.
package com.coherentlogic.fred.client.db.integration.dao;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.transaction.annotation.Transactional;
import com.coherentlogic.fred.client.core.domain.Observations;
/**
* Data access pattern implementation for {@link Observations} objects.
*
* @author Support
*/
@Transactional
public interface ObservationsRepository extends JpaRepository {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy