X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=portal-BE%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fportal%2Fservice%2FluTabSet%2FFnLuTabSetService.java;fp=portal-BE%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fportal%2Fservice%2FluTabSet%2FFnLuTabSetService.java;h=b9c131a0beeb80d816c05508fb2c439dc63bdcda;hb=9a391d0c4cca00a1cd448a6ce3fa755d42c8fd5d;hp=0000000000000000000000000000000000000000;hpb=2b436dba4b7c12e8c97f040753d0d5044d580b8d;p=portal.git diff --git a/portal-BE/src/main/java/org/onap/portal/service/luTabSet/FnLuTabSetService.java b/portal-BE/src/main/java/org/onap/portal/service/luTabSet/FnLuTabSetService.java new file mode 100644 index 00000000..b9c131a0 --- /dev/null +++ b/portal-BE/src/main/java/org/onap/portal/service/luTabSet/FnLuTabSetService.java @@ -0,0 +1,20 @@ +package org.onap.portal.service.luTabSet; + +import org.onap.portal.domain.db.fn.FnLuTabSet; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +@Service +public class FnLuTabSetService { + + private final FnLuTabSetDao fnLuTabSetDao; + + @Autowired + public FnLuTabSetService(FnLuTabSetDao fnLuTabSetDao) { + this.fnLuTabSetDao = fnLuTabSetDao; + } + + public FnLuTabSet save(FnLuTabSet fnLuTabSet) { + return fnLuTabSetDao.save(fnLuTabSet); + } +}