|
34 | 34 | */ |
35 | 35 | public abstract class UiFunction extends Function<Object, Object> { |
36 | 36 |
|
37 | | - protected Map<String, Object> getFromUrl(final ActionContext ctx, final String requestUrl, final String charset, final String username, final String password) throws IOException, FrameworkException { |
| 37 | + protected Map<String, Object> getFromUrl(final ActionContext ctx, final String requestUrl, final String charset, final String username, final String password) throws FrameworkException { |
38 | 38 |
|
39 | 39 | return HttpHelper.get(requestUrl, charset, username, password, ctx.getHeaders(), ctx.isValidateCertificates()); |
40 | 40 | } |
41 | 41 |
|
42 | | - protected Map<String, Object> getBinaryFromUrl(final ActionContext ctx, final String requestUrl, final String charset, final String username, final String password) throws IOException, FrameworkException { |
| 42 | + protected Map<String, Object> getBinaryFromUrl(final ActionContext ctx, final String requestUrl, final String charset, final String username, final String password) throws FrameworkException { |
43 | 43 |
|
44 | 44 | return HttpHelper.getBinary(requestUrl, charset, username, password, ctx.getHeaders(), ctx.isValidateCertificates()); |
45 | 45 | } |
46 | 46 |
|
47 | | - protected Map<String, Object> headFromUrl(final ActionContext ctx, final String requestUrl, final String username, final String password) throws IOException, FrameworkException { |
| 47 | + protected Map<String, Object> headFromUrl(final ActionContext ctx, final String requestUrl, final String username, final String password) throws FrameworkException { |
48 | 48 |
|
49 | 49 | return HttpHelper.head(requestUrl, password, username, ctx.getHeaders(), ctx.isValidateCertificates()); |
50 | 50 | } |
|
0 commit comments