[PORTAL-7] Rebase
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / controller / sessionmgt / SessionCommunicationController.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.controller.sessionmgt;
21
22 import javax.servlet.http.HttpServletRequest;
23 import javax.servlet.http.HttpServletResponse;
24
25 import org.openecomp.portalapp.controller.EPRestrictedRESTfulBaseController;
26 import org.openecomp.portalapp.portal.logging.aop.EPAuditLog;
27 import org.openecomp.portalapp.portal.utils.PortalConstants;
28 import org.openecomp.portalapp.service.sessionmgt.ManageService;
29 import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate;
30 import org.springframework.beans.factory.annotation.Autowired;
31 import org.springframework.context.annotation.Configuration;
32 import org.springframework.context.annotation.EnableAspectJAutoProxy;
33 import org.springframework.web.bind.annotation.RequestMapping;
34 import org.springframework.web.bind.annotation.RequestMethod;
35 import org.springframework.web.bind.annotation.RequestParam;
36 import org.springframework.web.bind.annotation.RestController;
37
38 import io.swagger.annotations.ApiOperation;
39
40
41 @RestController
42 @RequestMapping(PortalConstants.REST_AUX_API)
43 @Configuration
44 @EnableAspectJAutoProxy
45 @EPAuditLog
46 public class SessionCommunicationController  extends EPRestrictedRESTfulBaseController {
47         EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(SessionCommunicationController.class);
48         
49         @Autowired
50         private ManageService manageService;
51                 
52         protected boolean isAuxRESTfulCall(){
53                 return true;
54         }
55         
56         @ApiOperation(value = "Gets session slot-check interval, a duration in milliseconds.",
57     response = Integer.class)
58         @RequestMapping(value={"/getSessionSlotCheckInterval"}, method = RequestMethod.GET, produces = "application/json")
59         public Integer getSessionSlotCheckInterval(HttpServletRequest request, HttpServletResponse response) throws Exception {
60                 return manageService.fetchSessionSlotCheckInterval();
61         }
62         
63         @ApiOperation(value = "Extends session timeout values for all on-boarded applications.",
64     response = Boolean.class)
65         @RequestMapping(value={"/extendSessionTimeOuts"}, method = RequestMethod.POST)
66         public Boolean extendSessionTimeOuts(HttpServletRequest request, HttpServletResponse response, @RequestParam String sessionMap) throws Exception {
67                 manageService.extendSessionTimeOuts(sessionMap);
68                 
69                 return true;
70         }
71
72 }