All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.findify.s3mock.response.InitiateMultipartUploadResult.scala Maven / Gradle / Ivy

The newest version!
package io.findify.s3mock.response

import java.net.URLDecoder

/**
  * Created by shutty on 8/10/16.
  */
case class InitiateMultipartUploadResult(bucket:String, key:String, uploadId:String) {
  def toXML =
    
      {bucket}
      {/* the key is the still URLencoded path */URLDecoder.decode(key, "UTF-8") }
      {uploadId}
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy