Adding Copyright Missing files
[oam/tr069-adapter.git] / netconf-server / src / main / java / org / commscope / tr069adapter / netconf / server / ves / VESNotificationSender.java
1 /*
2  * ============LICENSE_START========================================================================
3  * ONAP : tr-069-adapter
4  * =================================================================================================
5  * Copyright (C) 2020 CommScope Inc Intellectual Property.
6  * =================================================================================================
7  * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,
8  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You
9  * may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
14  * either express or implied. See the License for the specific language governing permissions and
15  * limitations under the License.
16  * ===============LICENSE_END=======================================================================
17  */
18
19 package org.commscope.tr069adapter.netconf.server.ves;\r
20 \r
21 import org.commscope.tr069adapter.mapper.model.VESNotification;\r
22 import org.commscope.tr069adapter.mapper.model.VESNotificationResponse;\r
23 import org.commscope.tr069adapter.netconf.config.NetConfServerProperties;\r
24 import org.slf4j.Logger;\r
25 import org.slf4j.LoggerFactory;\r
26 import org.springframework.beans.factory.annotation.Autowired;\r
27 import org.springframework.stereotype.Component;\r
28 import org.springframework.web.client.RestTemplate;\r
29 \r
30 @Component\r
31 public class VESNotificationSender {\r
32 \r
33   private static final Logger LOG = LoggerFactory.getLogger(VESNotificationSender.class);\r
34   private RestTemplate restTemplate = new RestTemplate();\r
35 \r
36   @Autowired\r
37   NetConfServerProperties config;\r
38 \r
39   public VESNotificationResponse sendDeleteConfigNotification(VESNotification vesNotification) {\r
40     final String uri = getUri() + "/deleteConfig";\r
41     LOG.debug("Posting delete-config request to ves agent {}", uri);\r
42     return restTemplate.postForObject(uri, vesNotification, VESNotificationResponse.class);\r
43   }\r
44 \r
45   private String getUri() {\r
46     return config.getVesURI();\r
47   }\r
48 }\r