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

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

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

import com.checkmarx.sdk.dto.sast.CxUser;
import com.checkmarx.sdk.exception.CheckmarxException;

import java.util.List;


/**
 * Class used to orchestrate submitting scans and retrieving results
 */
public interface CxUserClient {
    public List getUsers() throws CheckmarxException;

    public CxUser getUser(Integer id) throws CheckmarxException;

    public void addUser(CxUser user) throws CheckmarxException;

    public void updateUser(CxUser user) throws CheckmarxException;

    public void deleteUser(Integer id) throws CheckmarxException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy