X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=portal-BE%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fportal%2Fservice%2FbasicAuthAccount%2FEpBasicAuthAccountService.java;fp=portal-BE%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fportal%2Fservice%2FbasicAuthAccount%2FEpBasicAuthAccountService.java;h=3b23e91898f683bae49c5a1bc0b7a26173ef97f4;hb=059edd0c134cecfa6939f35fb8eb847d4c40631f;hp=0000000000000000000000000000000000000000;hpb=ba2d7bcaf4ce42fd0c8742dc462ef0160bdfd8f7;p=portal.git diff --git a/portal-BE/src/main/java/org/onap/portal/service/basicAuthAccount/EpBasicAuthAccountService.java b/portal-BE/src/main/java/org/onap/portal/service/basicAuthAccount/EpBasicAuthAccountService.java new file mode 100644 index 00000000..3b23e918 --- /dev/null +++ b/portal-BE/src/main/java/org/onap/portal/service/basicAuthAccount/EpBasicAuthAccountService.java @@ -0,0 +1,20 @@ +package org.onap.portal.service.basicAuthAccount; + +import org.onap.portal.domain.db.ep.EpBasicAuthAccount; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +@Service +public class EpBasicAuthAccountService { + + private final EpBasicAuthAccountDao epBasicAuthAccountDao; + + @Autowired + public EpBasicAuthAccountService(EpBasicAuthAccountDao epBasicAuthAccountDao) { + this.epBasicAuthAccountDao = epBasicAuthAccountDao; + } + + public EpBasicAuthAccount save(EpBasicAuthAccount epBasicAuthAccount) { + return epBasicAuthAccountDao.save(epBasicAuthAccount); + } +}