com.infusers.core.version.APIController Maven / Gradle / Ivy
package com.infusers.core.version;
import java.util.List;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
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.RestController;
import com.infusers.core.version.deployment.CloudProviderService;
import com.infusers.core.version.springboot.dto.DependencyDto;
@RestController
@RequestMapping("infusers/api")
@CrossOrigin(origins = "*")
public class APIController {
@Autowired(required = true)
private APIService apiService;
@Autowired(required = true)
private CloudProviderService cloudProviderService;
private Logger log = LogManager.getLogger(APIController.class);
@GetMapping("/cloud-provider")
public ResponseEntity
© 2015 - 2025 Weber Informatics LLC | Privacy Policy