Merge "InvalidRoleException-junits"
[portal.git] / portal-BE / src / main / java / org / onap / portal / service / luTabSet / FnLuTabSetService.java
1 package org.onap.portal.service.luTabSet;
2
3 import org.onap.portal.domain.db.fn.FnLuTabSet;
4 import org.springframework.beans.factory.annotation.Autowired;
5 import org.springframework.stereotype.Service;
6
7 @Service
8 public class FnLuTabSetService {
9
10     private final FnLuTabSetDao fnLuTabSetDao;
11
12     @Autowired
13     public FnLuTabSetService(FnLuTabSetDao fnLuTabSetDao) {
14         this.fnLuTabSetDao = fnLuTabSetDao;
15     }
16
17     public FnLuTabSet save(FnLuTabSet fnLuTabSet) {
18         return fnLuTabSetDao.save(fnLuTabSet);
19     }
20 }