[ 
https://issues.apache.org/jira/browse/BEAM-10378?focusedWorklogId=462309&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-462309
 ]

ASF GitHub Bot logged work on BEAM-10378:
-----------------------------------------

                Author: ASF GitHub Bot
            Created on: 23/Jul/20 00:20
            Start Date: 23/Jul/20 00:20
    Worklog Time Spent: 10m 
      Work Description: ettirapp commented on a change in pull request #12335:
URL: https://github.com/apache/beam/pull/12335#discussion_r459154346



##########
File path: 
sdks/java/io/azure/src/main/java/org/apache/beam/sdk/io/azure/blobstore/AzureBlobStoreFileSystemRegistrar.java
##########
@@ -15,3 +15,20 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+package org.apache.beam.sdk.io.azure.blobstore;
+
+import static 
org.apache.beam.vendor.guava.v26_0_jre.com.google.common.base.Preconditions.checkNotNull;
+
+import javax.annotation.Nonnull;
+import org.apache.beam.sdk.io.FileSystem;
+import org.apache.beam.sdk.io.FileSystemRegistrar;
+import org.apache.beam.sdk.options.PipelineOptions;
+import 
org.apache.beam.vendor.guava.v26_0_jre.com.google.common.collect.ImmutableList;
+
+public class AzureBlobStoreFileSystemRegistrar implements FileSystemRegistrar {
+  @Override
+  public Iterable<FileSystem> fromOptions(@Nonnull PipelineOptions options) {
+    checkNotNull(options, "Expect the runner have called 
FileSystems.setDefaultPipelineOptions().");
+    return ImmutableList.of();

Review comment:
       I was getting an error from javadoc because there were no public classes 
in the PR so I added this file.  I will add `TODO`.




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Issue Time Tracking
-------------------

    Worklog Id:     (was: 462309)
    Time Spent: 5h 40m  (was: 5.5h)

> Implement an Azure blobstore filesystem for Java SDK
> ----------------------------------------------------
>
>                 Key: BEAM-10378
>                 URL: https://issues.apache.org/jira/browse/BEAM-10378
>             Project: Beam
>          Issue Type: Improvement
>          Components: io-java-azure
>            Reporter: Pablo Estrada
>            Assignee: Etta Rapp
>            Priority: P2
>          Time Spent: 5h 40m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to