com.cx.restclient.sast.dto.Comment 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.sast.dto;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
/**
* Created by Galn on 14/02/2018.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class Comment {
private String comment;
public Comment(String comment) {
this.comment = comment;
}
public String getComment() {
return comment;
}
public void setComment(String comment) {
this.comment = comment;
}
}