diff options
Diffstat (limited to 'app/src/main/java/org/rssin/http/Request.java')
-rw-r--r-- | app/src/main/java/org/rssin/http/Request.java | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app/src/main/java/org/rssin/http/Request.java b/app/src/main/java/org/rssin/http/Request.java new file mode 100644 index 0000000..b9861a5 --- /dev/null +++ b/app/src/main/java/org/rssin/http/Request.java @@ -0,0 +1,20 @@ +package org.rssin.http; + +import java.net.URL; + +/** + * Created by camilstaps on 21-5-15. + */ +public class Request { + + URL url; + + public Request(URL url) { + this.url = url; + } + + public URL getURL() { + return url; + } + +} |