[PORTAL-16 PORTAL-18] Widget ms; staging
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / service / GetAccessServiceImpl.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.portal.service;
21
22 import java.util.HashMap;
23 import java.util.List;
24 import java.util.Map;
25
26 import org.springframework.beans.factory.annotation.Autowired;
27 import org.springframework.context.annotation.EnableAspectJAutoProxy;
28 import org.springframework.stereotype.Service;
29 import org.springframework.transaction.annotation.Transactional;
30
31 import org.openecomp.portalsdk.core.service.DataAccessService;
32 import org.openecomp.portalapp.portal.domain.EPUser;
33 import org.openecomp.portalapp.portal.domain.GetAccessResult;
34 import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog;
35
36 @Service("getAccessService")
37 @Transactional
38 @org.springframework.context.annotation.Configuration
39 @EnableAspectJAutoProxy
40 @EPMetricsLog
41 public class GetAccessServiceImpl implements GetAccessService{
42
43         @Autowired
44         private DataAccessService dataAccessService;
45
46         /*
47          * (non-Javadoc)
48          * @see org.openecomp.portalapp.portal.service.GetAccessService#getAppAccessList()
49          */
50         @SuppressWarnings("unchecked")
51         @Override
52         public List<GetAccessResult> getAppAccessList(EPUser user) {
53                 final Map<String, Long> params = new HashMap<>();
54                 List<GetAccessResult> appAccessList = null;
55                 params.put("userId", user.getId());
56                 appAccessList = dataAccessService
57                                 .executeNamedQuery("getAppAccessFunctionRole", params, null);
58                 return appAccessList;
59         }
60
61 }