nexus site path corrected
[portal.git] / ecomp-portal-BE / 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.service.sessionmgt.ManageService;
28 import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate;
29 import org.springframework.beans.factory.annotation.Autowired;
30 import org.springframework.context.annotation.EnableAspectJAutoProxy;
31 import org.springframework.web.bind.annotation.RequestMapping;
32 import org.springframework.web.bind.annotation.RequestMethod;
33 import org.springframework.web.bind.annotation.RequestParam;
34 import org.springframework.web.bind.annotation.RestController;
35
36
37 @RestController
38 @RequestMapping("/auxapi")
39 @org.springframework.context.annotation.Configuration
40 @EnableAspectJAutoProxy
41 @EPAuditLog
42 public class SessionCommunicationController  extends EPRestrictedRESTfulBaseController {
43         EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(SessionCommunicationController.class);
44         
45         @Autowired
46         ManageService manageService;
47                 
48         protected boolean isAuxRESTfulCall(){
49                 return true;
50         }
51         
52         @RequestMapping(value={"/getSessionSlotCheckInterval"}, method = RequestMethod.GET, produces = "application/json")
53         public Integer getSessionSlotCheckInterval(HttpServletRequest request, HttpServletResponse response) throws Exception {
54                 return manageService.fetchSessionSlotCheckInterval();
55         }
56         
57         @RequestMapping(value={"/extendSessionTimeOuts"}, method = RequestMethod.POST)
58         public Boolean extendSessionTimeOuts(HttpServletRequest request, HttpServletResponse response, @RequestParam String sessionMap) throws Exception {
59                 manageService.extendSessionTimeOuts(sessionMap);
60                 
61                 return true;
62         }
63
64 }