ecd6a13c58b860497f553ea26cb608e2ba43a618
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / service / EPProfileServiceImpl.java
1 /*-
2  * ================================================================================
3  * ECOMP Portal
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ================================================================================
19  */
20 package org.openecomp.portalapp.service;
21
22 import java.util.List;
23
24 import org.springframework.beans.factory.annotation.Autowired;
25 import org.springframework.context.annotation.EnableAspectJAutoProxy;
26 import org.springframework.stereotype.Service;
27 import org.springframework.transaction.annotation.Transactional;
28
29 import org.openecomp.portalsdk.core.dao.ProfileDao;
30 import org.openecomp.portalsdk.core.domain.Profile;
31 import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate;
32 import org.openecomp.portalsdk.core.service.DataAccessService;
33 import org.openecomp.portalapp.portal.domain.EPUser;
34 import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog;
35
36 @Service("epProfileService")
37 @Transactional
38 @org.springframework.context.annotation.Configuration
39 @EnableAspectJAutoProxy
40 @EPMetricsLog
41 public class EPProfileServiceImpl implements EPProfileService {
42
43         EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPProfileServiceImpl.class);
44         
45         @Autowired
46         private ProfileDao profileDao;
47
48         @Autowired
49         private DataAccessService dataAccessService;
50
51         @SuppressWarnings("unchecked")
52         public List<Profile> findAll() {
53                 // List msgDB = getDataAccessService().getList(Profile.class, null);
54                 return getDataAccessService().getList(Profile.class, null);
55         }
56
57         public EPUser getUser(String userId) {
58                 return (EPUser) getDataAccessService().getDomainObject(EPUser.class, Long.parseLong(userId), null);
59         }
60
61         public void saveUser(EPUser user) {
62
63                 getDataAccessService().saveDomainObject(user, null);
64         }
65
66         public Profile getProfile(int id) {
67                 return profileDao.getProfile(id);
68         }
69
70         public DataAccessService getDataAccessService() {
71                 return dataAccessService;
72         }
73
74         public void setDataAccessService(DataAccessService dataAccessService) {
75                 this.dataAccessService = dataAccessService;
76         }
77 }