com.cx.restclient.sast.dto.ProjectPutRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cx-client-common Show documentation
Show all versions of cx-client-common Show documentation
Web client for interaction with Checkmarx SAST, SCA and OSA products
The newest version!
package com.cx.restclient.sast.dto;
import java.util.ArrayList;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
/**
* Created by Galn on 13/02/2018.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class ProjectPutRequest {
private String name;
private Integer owningTeam;
private List customFields;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getOwningTeam() {
return owningTeam;
}
public void setOwningTeam(Integer owningTeam) {
this.owningTeam = owningTeam;
}
public List getCustomFields() {
return customFields;
}
public void setCustomFields(ArrayList custObj) {
this.customFields = custObj;
}
}