aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/controller/RoleGeneratorController.java
blob: 78f1e37d538591eeb6dc55c19f3f6919b6d50536 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package org.onap.vid.controller;

import org.onap.portalsdk.core.controller.UnRestrictedBaseController;
import org.onap.vid.services.RoleGeneratorService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class RoleGeneratorController extends UnRestrictedBaseController {
    @Autowired
    private RoleGeneratorService roleGeneratorService;
    public static final String GENERATE_ROLE_SCRIPT = "generateRoleScript";
    @RequestMapping(value =  GENERATE_ROLE_SCRIPT +"/{firstRun}", method = RequestMethod.GET )
    public ResponseEntity<String> generateRoleScript (@PathVariable("firstRun") boolean firstRun) {
        ResponseEntity<String> response = null;
        String query = roleGeneratorService.generateRoleScript(firstRun);
        response = new ResponseEntity<>(query, HttpStatus.OK);
        return response;
    }

}