X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=portal-BE%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fportal%2Fservice%2FluAlertMethod%2FFnLuAlertMethodService.java;fp=portal-BE%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fportal%2Fservice%2FluAlertMethod%2FFnLuAlertMethodService.java;h=649ea9873fd139bab75fbf72c839fd3d24075c01;hb=9a391d0c4cca00a1cd448a6ce3fa755d42c8fd5d;hp=0000000000000000000000000000000000000000;hpb=2b436dba4b7c12e8c97f040753d0d5044d580b8d;p=portal.git diff --git a/portal-BE/src/main/java/org/onap/portal/service/luAlertMethod/FnLuAlertMethodService.java b/portal-BE/src/main/java/org/onap/portal/service/luAlertMethod/FnLuAlertMethodService.java new file mode 100644 index 00000000..649ea987 --- /dev/null +++ b/portal-BE/src/main/java/org/onap/portal/service/luAlertMethod/FnLuAlertMethodService.java @@ -0,0 +1,22 @@ +package org.onap.portal.service.luAlertMethod; + +import org.onap.portal.domain.db.fn.FnLuAlertMethod; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.List; + +@Service +public class FnLuAlertMethodService { + + private final FnLuAlertMethodDao fnLuAlertMethodDao; + + @Autowired + public FnLuAlertMethodService(FnLuAlertMethodDao fnLuAlertMethodDao) { + this.fnLuAlertMethodDao = fnLuAlertMethodDao; + } + + public List saveAll(List alertMethods) { + return fnLuAlertMethodDao.saveAll(alertMethods); + } +}