Class PackageUtil.StagedFile
- java.lang.Object
-
- org.apache.beam.runners.dataflow.util.PackageUtil.StagedFile
-
- Enclosing class:
- PackageUtil
public abstract static class PackageUtil.StagedFile extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description StagedFile()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract java.lang.StringgetDestination()Staged target for this file.abstract java.lang.StringgetSha256()The SHA-256 hash of the source file.abstract java.lang.StringgetSource()The file to stage.static PackageUtil.StagedFileof(java.lang.String source, java.lang.String sha256, java.lang.String destination)
-
-
-
Method Detail
-
of
public static PackageUtil.StagedFile of(java.lang.String source, java.lang.String sha256, java.lang.String destination)
-
getSource
public abstract java.lang.String getSource()
The file to stage.
-
getSha256
public abstract java.lang.String getSha256()
The SHA-256 hash of the source file.
-
getDestination
public abstract java.lang.String getDestination()
Staged target for this file.
-
-