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

com.checkmarx.sdk.service.CxOsaService Maven / Gradle / Ivy

There is a newer version: 0.1.33
Show newest version
package com.checkmarx.sdk.service;

import com.checkmarx.sdk.dto.Filter;
import com.checkmarx.sdk.dto.ScanResults;
import com.checkmarx.sdk.exception.CheckmarxException;
import org.springframework.stereotype.Service;

import java.util.List;

@Service
public class CxOsaService implements CxOsaClient{
    @Override
    public ScanResults createScanAndReport(Integer projectId, String sourceDir, ScanResults results, List filter) throws CheckmarxException {
        return null;
    }

    @Override
    public String createScan(Integer projectId, String sourceDir) throws CheckmarxException {
        return null;
    }

    @Override
    public ScanResults waitForOsaScan(String scanId, Integer projectId, ScanResults results, List filter) throws CheckmarxException {
        return null;
    }

    @Override
    public ScanResults getLatestOsaResults(Integer projectId, ScanResults results, List filter) throws CheckmarxException {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy