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