
com.threatconnect.sdk.app.ExitStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
The ThreatConnect Java SDK. Used to communicate with teh ThreatConnect Threat Intelligence Platform
The newest version!
package com.threatconnect.sdk.app;
/**
* Created by dtineo on 5/15/15.
*/
public enum ExitStatus
{
Success("Success", 0), Failure("Failure", 1), Partial_Failure("Partial Failure", 3);
private final String status;
private final int exitCode;
ExitStatus(String status, int exitCode)
{
this.status = status;
this.exitCode = exitCode;
}
public String getStatus()
{
return status;
}
public int getExitCode()
{
return exitCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy