this.streamFactory = streamFactory;
this.outputFactory = outputFactory;
}
public List<Stream> all() throws IOException, APIException {
GetStreamsResponse r = null;
r = api.path(resource.get(), GetStreamsResponse.class).execute();
List<Stream> streams = Lists.newArrayList();
for (StreamSummaryResponse stream : r.streams) {