All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.kanishka.virustotalv2.VirustotalStatus Maven / Gradle / Ivy

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy