com.infusers.core.eng.selfheal.SelfHealController Maven / Gradle / Ivy
package com.infusers.core.eng.selfheal;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.io.Resource;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import com.infusers.core.eng.selfheal.deployment.CloudProviderService;
@RestController
@RequestMapping("infusers/api")
@CrossOrigin(origins = "*")
public class SelfHealController {
@Autowired(required = true)
private SelfHealService apiService;
@Autowired(required = true)
private CloudProviderService cloudProviderService;
@GetMapping("/cloud-provider")
public ResponseEntity
© 2015 - 2025 Weber Informatics LLC | Privacy Policy