summaryrefslogtreecommitdiffstats
path: root/portal-BE/src/main/java/org/onap/portal/dao/fn/FnAppDao.java
blob: 616ee2d17e335a6e9655263a701763a3162a00b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.onap.portal.dao.fn;

import org.onap.portal.domain.db.fn.FnApp;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import org.springframework.transaction.annotation.Transactional;

@Repository
@Transactional
public interface FnAppDao extends JpaRepository<FnApp, Long> {

}