com.cx.restclient.osa.dto.Severity 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 java.io.Serializable;
/**
* Created by zoharby on 09/01/2017.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class Severity implements Serializable {
private Integer Id;
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getId() {
return Id;
}
public void setId(Integer id) {
Id = id;
}
}