Class 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.String getDestination()
      Staged target for this file.
      abstract java.lang.String getSha256()
      The SHA-256 hash of the source file.
      abstract java.lang.String getSource()
      The file to stage.
      static PackageUtil.StagedFile of​(java.lang.String source, java.lang.String sha256, java.lang.String destination)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • StagedFile

        public StagedFile()
    • 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.