com.checkmarx.sdk.dto.cxgo.OdScanFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cx-spring-boot-sdk Show documentation
Show all versions of cx-spring-boot-sdk Show documentation
Checkmarx Java Spring Boot SDK
package com.checkmarx.sdk.dto.cxgo;
import com.fasterxml.jackson.annotation.*;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"code"
})
public class OdScanFile {
@JsonProperty("code")
private String code;
@JsonProperty("language")
private String language;
@JsonProperty("code")
public String getCode() {
return code;
}
@JsonProperty("code")
public void setCode(String code) {
this.code = code;
}
@JsonProperty("language")
public String getLanguage() {
return language;
}
@JsonProperty("language")
public void setLanguage(String language) {
this.language = language;
}
}