Record Class FileStorage.StagingUploadInfo

java.lang.Object
java.lang.Record
io.leandev.appfuse.file.FileStorage.StagingUploadInfo
Record Components:
tempId - 暫存檔案 ID(格式:{date}/{uuid})
directUploadUrl - backend 直接上傳 URL;application proxy upload 時為 empty
filename - 原始檔名
contentType - MIME 類型
size - 檔案大小
Enclosing interface:
FileStorage

public static record FileStorage.StagingUploadInfo(String tempId, Optional<String> directUploadUrl, String filename, String contentType, long size) extends Record

暫存上傳資訊

FileStorage.prepareStaging(String, String, String, long) 回傳,包含上傳所需的資訊。

  • Constructor Details

    • StagingUploadInfo

      public StagingUploadInfo(String tempId, Optional<String> directUploadUrl, String filename, String contentType, long size)
      Creates an instance of a StagingUploadInfo record class.
      Parameters:
      tempId - the value for the tempId record component
      directUploadUrl - the value for the directUploadUrl record component
      filename - the value for the filename record component
      contentType - the value for the contentType record component
      size - the value for the size record component
  • Method Details

    • applicationUpload

      public static FileStorage.StagingUploadInfo applicationUpload(String tempId, String filename, String contentType, long size)
      建立由 application adapter 接收內容的 staging ticket。
    • directUpload

      public static FileStorage.StagingUploadInfo directUpload(String tempId, String uploadUrl, String filename, String contentType, long size)
      建立由 backend 提供 URL 的直接上傳 staging ticket。
    • isDirectUpload

      public boolean isDirectUpload()
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with the compare method from their corresponding wrapper classes.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • tempId

      public String tempId()
      Returns the value of the tempId record component.
      Returns:
      the value of the tempId record component
    • directUploadUrl

      public Optional<String> directUploadUrl()
      Returns the value of the directUploadUrl record component.
      Returns:
      the value of the directUploadUrl record component
    • filename

      public String filename()
      Returns the value of the filename record component.
      Returns:
      the value of the filename record component
    • contentType

      public String contentType()
      Returns the value of the contentType record component.
      Returns:
      the value of the contentType record component
    • size

      public long size()
      Returns the value of the size record component.
      Returns:
      the value of the size record component