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

io.findify.s3mock.response.CompleteMultipartUploadResult.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 CompleteMultipartUploadResult(bucket:String, key:String, etag:String) {
  def toXML =
    
      http://s3.amazonaws.com/{bucket}/{key}
      {bucket}
      {/* the key is the still URLencoded path */URLDecoder.decode(key, "UTF-8") }
      "{etag}"
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy