Record Class FileStorage.StagingUploadInfo

java.lang.Object
java.lang.Record
io.leandev.appfuse.file.FileStorage.StagingUploadInfo
Record Components:
tempId - 暫存檔案 ID(格式:{date}/{uuid})
uploadUrl - 上傳 URL(可能是後端 API 或 S3 Presigned URL)
filename - 原始檔名
contentType - MIME 類型
size - 檔案大小
Enclosing interface:
FileStorage

public static record FileStorage.StagingUploadInfo(String tempId, String uploadUrl, String filename, String contentType, long size) extends Record

暫存上傳資訊

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

  • Constructor Details

    • StagingUploadInfo

      public StagingUploadInfo(String tempId, String uploadUrl, String filename, String contentType, long size)
      Creates an instance of a StagingUploadInfo record class.
      Parameters:
      tempId - the value for the tempId record component
      uploadUrl - the value for the uploadUrl 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

    • isExternalUrl

      public boolean isExternalUrl()
      判斷是否為外部 URL(如 S3 Presigned URL)
      Returns:
      若 uploadUrl 以 http 開頭則為 true
    • 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
    • uploadUrl

      public String uploadUrl()
      Returns the value of the uploadUrl record component.
      Returns:
      the value of the uploadUrl 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