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

io.findify.s3mock.request.DeleteObjectsRequest.scala Maven / Gradle / Ivy

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

/**
  * Created by shutty on 3/13/17.
  */

case class DeleteObjectsRequest(objects: Seq[String])

object DeleteObjectsRequest {
  def apply(node: scala.xml.Node) = {
    val objs = (node \ "Object").map(_ \ "Key").map(_.text)
    new DeleteObjectsRequest(objs)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy