Dao object moved from dao packege to package by component in service folder
[portal.git] / portal-BE / src / main / java / org / onap / portal / service / ep / EpWidgetCatalogService.java
diff --git a/portal-BE/src/main/java/org/onap/portal/service/ep/EpWidgetCatalogService.java b/portal-BE/src/main/java/org/onap/portal/service/ep/EpWidgetCatalogService.java
deleted file mode 100644 (file)
index f0c273a..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-package org.onap.portal.service.ep;
-
-import org.onap.portal.dao.fn.EpWidgetCatalogDao;
-import org.onap.portal.domain.db.ep.EpWidgetCatalog;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.stereotype.Service;
-
-@Service
-public class EpWidgetCatalogService {
-
-       private final EpWidgetCatalogDao epWidgetCatalogDao;
-
-       @Autowired
-       public EpWidgetCatalogService(EpWidgetCatalogDao epWidgetCatalogDao) {
-              this.epWidgetCatalogDao = epWidgetCatalogDao;
-       }
-
-       public EpWidgetCatalog save(final EpWidgetCatalog epWidgetCatalog){
-              return epWidgetCatalogDao.save(epWidgetCatalog);
-       }
-}