com.cx.restclient.sast.dto.CxLanguageObj 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 com.fasterxml.jackson.annotation.JsonIgnoreProperties;
/**
* Created by Galn on 05/03/2018.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class CxLanguageObj {
private long languageID;
private String languageName;
public long getLanguageID() {
return languageID;
}
public void setLanguageID(long languageID) {
this.languageID = languageID;
}
public String getLanguageName() {
return languageName;
}
public void setLanguageName(String languageName) {
this.languageName = languageName;
}
}