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

com.kanishka.net.model.Response Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy