blob: 38577c453255aeff9cdd7eaa9ef91577dc44c848 (
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
|
/*
* http://code.google.com/p/javasape/
*/
package ru.sape;
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, String cookie) {
return new SapePageLinks(sapePageLinkConnection, sapeUser, requestUri, cookie, debug);
}
}
|