[PORTAL-7] Rebase
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / service / EPProfileServiceImpl.java
diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/service/EPProfileServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/service/EPProfileServiceImpl.java
new file mode 100644 (file)
index 0000000..2797597
--- /dev/null
@@ -0,0 +1,77 @@
+/*-\r
+ * ================================================================================\r
+ * ECOMP Portal\r
+ * ================================================================================\r
+ * Copyright (C) 2017 AT&T Intellectual Property\r
+ * ================================================================================\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ * \r
+ *      http://www.apache.org/licenses/LICENSE-2.0\r
+ * \r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ * ================================================================================\r
+ */\r
+package org.openecomp.portalapp.service;\r
+\r
+import java.util.List;\r
+\r
+import org.springframework.beans.factory.annotation.Autowired;\r
+import org.springframework.context.annotation.EnableAspectJAutoProxy;\r
+import org.springframework.stereotype.Service;\r
+import org.springframework.transaction.annotation.Transactional;\r
+\r
+import org.openecomp.portalsdk.core.dao.ProfileDao;\r
+import org.openecomp.portalsdk.core.domain.Profile;\r
+import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate;\r
+import org.openecomp.portalsdk.core.service.DataAccessService;\r
+import org.openecomp.portalapp.portal.domain.EPUser;\r
+import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog;\r
+\r
+@Service("epProfileService")\r
+@Transactional\r
+@org.springframework.context.annotation.Configuration\r
+@EnableAspectJAutoProxy\r
+@EPMetricsLog\r
+public class EPProfileServiceImpl implements EPProfileService {\r
+\r
+       EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPProfileServiceImpl.class);\r
+       \r
+       @Autowired\r
+       private ProfileDao profileDao;\r
+\r
+       @Autowired\r
+       private DataAccessService dataAccessService;\r
+\r
+       @SuppressWarnings("unchecked")\r
+       public List<Profile> findAll() {\r
+               // List msgDB = getDataAccessService().getList(Profile.class, null);\r
+               return getDataAccessService().getList(Profile.class, null);\r
+       }\r
+\r
+       public EPUser getUser(String userId) {\r
+               return (EPUser) getDataAccessService().getDomainObject(EPUser.class, Long.parseLong(userId), null);\r
+       }\r
+\r
+       public void saveUser(EPUser user) {\r
+\r
+               getDataAccessService().saveDomainObject(user, null);\r
+       }\r
+\r
+       public Profile getProfile(int id) {\r
+               return profileDao.getProfile(id);\r
+       }\r
+\r
+       public DataAccessService getDataAccessService() {\r
+               return dataAccessService;\r
+       }\r
+\r
+       public void setDataAccessService(DataAccessService dataAccessService) {\r
+               this.dataAccessService = dataAccessService;\r
+       }\r
+}\r