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

com.xcase.intapp.cdscm.impl.simple.transputs.GetClientSecurityRequestImpl Maven / Gradle / Ivy

package com.xcase.intapp.cdscm.impl.simple.transputs;

import com.xcase.intapp.cdscm.transputs.GetClientSecurityRequest;

public class GetClientSecurityRequestImpl extends CDSCMRequestImpl implements GetClientSecurityRequest {
    private String clientId;
    private String operationPath = "api/v1/clients/{clientId}/security";
    private int successResponseCode = 200;
    
    public int getSuccessResponseCode() {
        return this.successResponseCode;
    }

    public void setSuccessResponseCode(int successResponseCode) {
        this.successResponseCode = successResponseCode;
    }
    
    @Override
    public String getClientId() {
        return clientId;
    }
    
    @Override
    public String getOperationPath() {
        return operationPath;
    }

    @Override
    public void setClientId(String clientId) {
        this.clientId = clientId;
    }
    
    @Override
    public void setOperationPath(String operationPath) {
        this.operationPath = operationPath;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy