blob: d24ac0466caca71bc4451ed15a86562182fbf88f [file] [log] [blame]
Aharoni, Pavel (pa0916)0a8080c2018-11-22 15:45:19 +02001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
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 */
20package org.onap.osam.controllers;
21
22import org.onap.osam.common.dto.AccessPodDTO;
23import org.springframework.beans.factory.annotation.Autowired;
24import org.springframework.http.ResponseEntity;
25import org.springframework.web.bind.annotation.PathVariable;
26import org.springframework.web.bind.annotation.RequestMapping;
27import org.springframework.web.bind.annotation.RequestMethod;
28import org.springframework.web.bind.annotation.RestController;
29import org.springframework.web.client.RestTemplate;
30
31// TODO log
32@RestController
33@RequestMapping("topology")
34public class OnapEnablerTopologyController extends OnapEnablerController {
35
36 private static final String TOPOLOGY = "topology";
37
38 @Autowired
39 public OnapEnablerTopologyController(RestTemplate restTemplate) {
40 this.restTemplate = restTemplate;
41 }
42
43 @RequestMapping(method = RequestMethod.GET, value = "accessPod/{pnfId}")
44 public ResponseEntity<AccessPodDTO> getTopologyWithPnfId(@PathVariable String pnfId) {
45 return restTemplate.getForEntity(buildRequestPath(TOPOLOGY, "accessPod", pnfId), AccessPodDTO.class);
46 }
47}