Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
at develop 19 lines 414 B view raw
1package com.legacyminecraft.poseidon.util; 2 3public class HTTPResponse { 4 private String response; 5 private int responseCode; 6 7 public HTTPResponse(String response, int responseCode) { 8 this.response = response; 9 this.responseCode = responseCode; 10 } 11 12 public String getResponse() { 13 return response; 14 } 15 16 public int getResponseCode() { 17 return responseCode; 18 } 19}