Skip to content

Commit

Permalink
add URI string accessor
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobin Baker committed Jan 24, 2017
1 parent b61a318 commit d9aec08
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/edu/washington/escience/myria/io/UriSource.java
Expand Up @@ -71,6 +71,11 @@ public InputStream getInputStream() throws IOException {
: getHadoopFileSystemInputStream(parsedUri);
}

@JsonProperty("uri")
private String getUriString() {
return parsedUri.toString();
}

/**
* Get an input stream using the configured Hadoop file system for the given URI scheme
*/
Expand Down

0 comments on commit d9aec08

Please sign in to comment.