Archived
0

browser update

This commit is contained in:
2017-04-11 00:04:59 +03:00
parent 2b21c914f9
commit 42afbabd30
6 changed files with 129 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
/*
* DmitriyMX <mail@dmitriymx.ru>
* 2017-04-10
*/
package ru.dmitriymx.vkapi.browser;
import java.io.IOException;
public interface Browser {
void setUserAgent(String userAgent);
Response get(String url) throws IOException;
Response post(String url, String data) throws IOException;
}