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