com.kanishka.net.model.Response 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.net.model;
import java.io.Serializable;
import java.util.List;
/**
*
* @author kanishka
*/
public class Response implements Serializable {
private int status;
private String response;
private List responseHeaders;
public Response() {
}
public Response(int status, String response, List responseHeaders) {
this.status = status;
this.response = response;
this.responseHeaders = responseHeaders;
}
public int getStatus() {
return status;
}
public void setStatus(int status) {
this.status = status;
}
public String getResponse() {
return response;
}
public void setResponse(String response) {
this.response = response;
}
public List getResponseHeaders() {
return responseHeaders;
}
public void setResponseHeaders(List responseHeaders) {
this.responseHeaders = responseHeaders;
}
}