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

org.elasticmq.NodeAddress.scala Maven / Gradle / Ivy

package org.elasticmq

case class NodeAddress(protocol: String = "http",
                       host: String = "localhost",
                       port: Int = 9324,
                       contextPath: String = "") {
  def hostAndPort = host + ":" + port
  def fullAddress = protocol + "://" + hostAndPort + contextPath
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy