com.cx.restclient.cxArm.dto.Rule 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.cxArm.dto;
import java.util.ArrayList;
import java.util.List;
/**
* Created by Galn on 11/11/2018.
*/
public class Rule {
List violations = new ArrayList();
public List getViolations() {
return violations;
}
public void setViolations(List violations) {
this.violations = violations;
}
}