diff options
author | Vitaly Takmazov | 2015-10-24 19:35:41 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2015-10-24 19:35:41 +0300 |
commit | af80956ec669cf48ea6423959b5a4d8f16385d6f (patch) | |
tree | 3589c77814185cd8bf43408f46793aaf8917c27a /src/java/ru/sape/Sape.java | |
parent | 7a96f3f799e2e2358be246b3e9f0aa412ef28a2d (diff) |
moving to Gradle
Diffstat (limited to 'src/java/ru/sape/Sape.java')
-rw-r--r-- | src/java/ru/sape/Sape.java | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/java/ru/sape/Sape.java b/src/java/ru/sape/Sape.java deleted file mode 100644 index c00054ae..00000000 --- a/src/java/ru/sape/Sape.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * http://code.google.com/p/javasape/ - */ -package ru.sape; - -import javax.servlet.http.Cookie; - -public class Sape { - - private final String sapeUser; - private final SapeConnection sapePageLinkConnection; - - public Sape(String sapeUser, String host, int socketTimeout, int cacheLifeTime) { - this.sapeUser = sapeUser; - - this.sapePageLinkConnection = new SapeConnection( - "/code.php?user=" + sapeUser + "&host=" + host, - "SAPE_Client PHP", socketTimeout, cacheLifeTime); - } - public boolean debug = false; - - public SapePageLinks getPageLinks(String requestUri, Cookie[] cookies) { - return new SapePageLinks(sapePageLinkConnection, sapeUser, requestUri, cookies, debug); - } -} |