Add template and tosca model entities and repositories
[clamp.git] / src / main / java / org / onap / clamp / loop / log / LoopLogRepository.java
index 103341f..0b3c34e 100644 (file)
 
 package org.onap.clamp.loop.log;
 
-import org.springframework.data.repository.CrudRepository;
+import org.springframework.data.jpa.repository.JpaRepository;
 import org.springframework.stereotype.Repository;
 
 @Repository
-public interface LoopLogRepository extends CrudRepository<LoopLog, Long> {
+public interface LoopLogRepository extends JpaRepository<LoopLog, Long> {
 
 }