Package com.fortify.plugin.jenkins
Class FPRSummary
- java.lang.Object
-
- com.fortify.plugin.jenkins.FPRSummary
-
- All Implemented Interfaces:
Serializable
public class FPRSummary extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FPRSummary()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getFailedCount()
List<IssueFolderBean>
getFolderBeans()
FilePath
getFprFile()
String
getLogMessage()
double
getNvs()
int
getTotalIssues()
void
load(File parent, String appName, String appVersion)
void
log(String msg)
void
save(File parent, String appName, String appVersion)
void
setFailedCount(int failedCount)
void
setFolderBeans(List<IssueFolderBean> folderBeans)
void
setFprFile(FilePath fprFile)
void
setNvs(double nvs)
void
setTotalIssues(int totalIssues)
-
-
-
Method Detail
-
load
public void load(File parent, String appName, String appVersion) throws IOException
- Throws:
IOException
-
save
public void save(File parent, String appName, String appVersion) throws IOException
- Throws:
IOException
-
getNvs
public double getNvs()
-
setNvs
public void setNvs(double nvs)
-
setFolderBeans
public void setFolderBeans(List<IssueFolderBean> folderBeans)
-
getFolderBeans
public List<IssueFolderBean> getFolderBeans()
-
getFprFile
public FilePath getFprFile()
-
setFprFile
public void setFprFile(FilePath fprFile)
-
getFailedCount
public int getFailedCount()
-
setFailedCount
public void setFailedCount(int failedCount)
-
getTotalIssues
public int getTotalIssues()
-
setTotalIssues
public void setTotalIssues(int totalIssues)
-
log
public void log(String msg)
-
getLogMessage
public String getLogMessage()
-
-