com.cx.restclient.osa.dto.Content 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
package com.cx.restclient.osa.dto;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonRawValue;
@JsonIgnoreProperties(ignoreUnknown = true)
public class Content {
@JsonRawValue
@JsonProperty("projects")
String projects;
public Content(String projects) {
this.projects = projects;
}
public String getProjects() {
return projects;
}
public void setProjects(String projects) {
this.projects = projects;
}
}