[VID-3] Setting docker image tag
[vid.git] / vid / src / main / java / org / openecomp / vid / controller / ViewEditSubController.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 import java.io.File;
25 import java.text.DateFormat;
26 import java.util.HashMap;
27 import java.util.Map;
28
29
30
31
32 import javax.servlet.ServletContext;
33 import javax.servlet.http.HttpServletRequest;
34
35 import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate;
36 import org.springframework.beans.factory.annotation.Autowired;
37 import org.springframework.web.bind.annotation.PathVariable;
38 import org.springframework.web.bind.annotation.RequestMapping;
39 import org.springframework.web.bind.annotation.RequestMethod;
40 import org.springframework.web.bind.annotation.RestController;
41 import org.springframework.web.servlet.ModelAndView;
42
43 import org.openecomp.portalsdk.core.controller.RestrictedBaseController;
44
45
46 /**
47  * The Class ViewEditSubController.
48  */
49 @RestController
50 public class ViewEditSubController extends RestrictedBaseController{
51         
52         /** The view name. */
53         String viewName;
54         
55         /** The logger. */
56         EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(ViewEditSubController.class);
57         
58         /** The model. */
59         private Map<String, Object> model = new HashMap<String, Object>();
60         
61         /** The servlet context. */
62         private @Autowired ServletContext servletContext;
63         
64         /**
65          * Welcome.
66          *
67          * @param request the request
68          * @return the model and view
69          */
70         @RequestMapping(value = {"/vieweditsub" }, method = RequestMethod.GET)
71         public ModelAndView welcome(HttpServletRequest request) {
72                 return new ModelAndView("vieweditsub","model", model);
73     //  return new ModelAndView(getViewName());         
74         }
75         
76         /**
77          * Post subscriber.
78          *
79          * @param request the request
80          */
81         @RequestMapping(value="/vieweditsub/subedit", method = RequestMethod.POST)
82         public void PostSubscriber(HttpServletRequest request) {
83                 
84                 String        subID = request.getParameter("subscriberID");
85                 model.put("subInfo", subID);
86                 
87         }
88         
89         /* (non-Javadoc)
90          * @see org.openecomp.portalsdk.core.controller.RestrictedBaseController#getViewName()
91          */
92         public String getViewName() {
93                 return viewName;
94         }
95         
96         /* (non-Javadoc)
97          * @see org.openecomp.portalsdk.core.controller.RestrictedBaseController#setViewName(java.lang.String)
98          */
99         public void setViewName(String viewName) {
100                 this.viewName = viewName;
101         }
102
103
104         
105
106 }
107