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

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

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

import com.checkmarx.sdk.config.CxProperties;
import com.checkmarx.sdk.dto.CxUser;
import com.checkmarx.sdk.exception.CheckmarxException;
import org.slf4j.Logger;
import org.springframework.stereotype.Service;

import java.util.List;

@Service
public class CxUserService implements CxUserClient{
    private static final Logger log = org.slf4j.LoggerFactory.getLogger(CxUserService.class);
    private final CxAuthClient authClient;
    private final CxProperties cxProperties;

    public CxUserService(CxAuthClient authClient, CxProperties cxProperties) {
        this.authClient = authClient;
        this.cxProperties = cxProperties;
    }


    @Override
    public List getUsers() throws CheckmarxException {
        return null;
    }

    @Override
    public CxUser getUser(Integer id) throws CheckmarxException {
        return null;
    }

    @Override
    public void addUser(CxUser user) throws CheckmarxException {

    }

    @Override
    public void updateUser(CxUser user) throws CheckmarxException {

    }

    @Override
    public void deleteUser(Integer id) throws CheckmarxException {

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy