com.kanishka.virustotalv2.VirustotalStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of VirustotalPublicV2.0 Show documentation
Show all versions of VirustotalPublicV2.0 Show documentation
Please refer to
https://github.com/kdkanishka/Virustotal-Public-API-V2.0-Client
The newest version!
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.kanishka.virustotalv2;
import java.net.HttpURLConnection;
/**
* Wraps HTTP status codes using Virustotal specific constants
*
* @author kdesilva
*/
public final class VirustotalStatus {
private VirustotalStatus() {
}
public static final int FORBIDDEN = HttpURLConnection.HTTP_FORBIDDEN;
public static final int API_LIMIT_EXCEEDED = HttpURLConnection.HTTP_NO_CONTENT;
public static final int SUCCESSFUL = HttpURLConnection.HTTP_OK;
}