[VID-3] Setting docker image tag
[vid.git] / vid / src / main / java / org / openecomp / vid / controller / ViewLogController.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.vid.controller;
22
23 import java.text.DateFormat;
24 import java.text.SimpleDateFormat;
25
26 import javax.servlet.ServletContext;
27 import javax.servlet.http.HttpServletRequest;
28
29 import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate;
30 import org.springframework.beans.factory.annotation.Autowired;
31
32 import org.springframework.web.bind.annotation.RequestMapping;
33 import org.springframework.web.bind.annotation.RequestMethod;
34 import org.springframework.web.bind.annotation.RestController;
35 import org.springframework.web.servlet.ModelAndView;
36 import org.openecomp.portalsdk.core.controller.RestrictedBaseController;
37
38
39 /**
40  * The Class ViewLogController.
41  */
42 @RestController
43 public class ViewLogController extends RestrictedBaseController{
44         
45         /** The view name. */
46         String viewName;
47         
48         /** The logger. */
49         EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(ViewLogController.class);
50         
51         /** The Constant dateFormat. */
52         final static DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss:SSSS");
53         
54         /** The servlet context. */
55         private @Autowired ServletContext servletContext;
56         
57         /**
58          * Welcome.
59          *
60          * @param request the request
61          * @return the model and view
62          */
63         @RequestMapping(value = {"/viewlog" }, method = RequestMethod.GET)
64         public ModelAndView welcome(HttpServletRequest request) {
65                 
66         return new ModelAndView(getViewName());         
67         }
68         
69         /* (non-Javadoc)
70          * @see org.openecomp.portalsdk.core.controller.RestrictedBaseController#getViewName()
71          */
72         public String getViewName() {
73                 return viewName;
74         }
75         
76         /* (non-Javadoc)
77          * @see org.openecomp.portalsdk.core.controller.RestrictedBaseController#setViewName(java.lang.String)
78          */
79         public void setViewName(String viewName) {
80                 this.viewName = viewName;
81         }
82
83
84 }