1 package net.matuschek.http; 2 3 6 7 import java.net.URL ; 8 9 16 public class ExtendedURL { 17 18 private URL url = null; 19 private int requestMethod = HttpConstants.GET; 20 private String params = ""; 21 22 23 26 public ExtendedURL() { 27 } 28 29 public URL getURL() { 30 return this.url; 31 } 32 33 public void setURL(URL url) { 34 this.url = url; 35 } 36 37 38 public int getRequestMethod() { 39 return this.requestMethod; 40 } 41 42 public void setRequestMethod(int requestMethod) { 43 this.requestMethod = requestMethod; 44 } 45 46 public String getParams() { 47 return this.params; 48 } 49 50 51 public void setParams(String params) { 52 this.params = params; 53 } 54 55 56 57 } 58 | Popular Tags |