Added Android code
[wl-app.git] / Android / r2-streamer / r2-fetcher / src / main / java / org / readium / r2_streamer / fetcher / Fetcher.java
1 package org.readium.r2_streamer.fetcher;
2
3 import java.io.InputStream;
4
5 /**
6  * Created by Shrikant Badwaik on 30-Jan-17.
7  */
8
9 public interface Fetcher {
10     String getData(String path) throws EpubFetcherException;
11
12     int getDataSize(String path) throws EpubFetcherException;
13
14     InputStream getDataInputStream(String path) throws EpubFetcherException;
15 }