All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.capitalone.dashboard.webhook.sonarqube.SonarQubeHookService Maven / Gradle / Ivy

There is a newer version: 3.4.53
Show newest version
package com.capitalone.dashboard.webhook.sonarqube;

import com.capitalone.dashboard.misc.HygieiaException;
import com.capitalone.dashboard.request.SonarDataSyncRequest;
import org.json.simple.JSONObject;
import org.json.simple.parser.ParseException;
import org.springframework.http.ResponseEntity;

import java.net.MalformedURLException;

public interface SonarQubeHookService {
    String createFromSonarQubeV1(JSONObject request) throws ParseException, HygieiaException, MalformedURLException;
    ResponseEntity syncData(SonarDataSyncRequest request) throws HygieiaException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy