blob: c00054aec51fe3f8bf02aa8d2868378b7b0722d1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* 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);
}
}
|