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

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

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

/**
  * Created by shutty on 8/10/16.
  */
case class CreateBucketConfiguration(locationConstraint:Option[String])

object CreateBucketConfiguration {
  def apply(xml:scala.xml.Node) = {
    val region = xml.find(_.label == "locationConstraint").map(_.text)
    new CreateBucketConfiguration(region)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy