final case class ServerEndpoints(endpoints: Seq[ServerEndpoint]) extends Product with Serializable

Wrapper for a sequence of ServerEndpoints. Has a few convenience methods. Also can be used as an implicit parameter to pass around server endpoint information.

Annotations
@ApiMayChange()
Source
ServerEndpoints.scala
Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ServerEndpoints
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ServerEndpoints(endpoints: Seq[ServerEndpoint])

Value Members

  1. val endpoints: Seq[ServerEndpoint]
  2. val httpEndpoint: Option[ServerEndpoint]

    Convenient way to get an HTTP endpoint

  3. val httpsEndpoint: Option[ServerEndpoint]

    Convenient way to get an HTTPS endpoint

  4. def productElementNames: Iterator[String]
    Definition Classes
    Product