![JAR search and dependency download from the Maven repository](/logo.png)
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 - 2025 Weber Informatics LLC | Privacy Policy