Packages

abstract class TlsSessionInfo extends CustomHeader

Model for the synthetic Tls-Session-Info header which carries the SSLSession of the connection the message carrying this header was received with.

This header will only be added if it enabled in the configuration by setting pekko.http.[client|server].parsing.tls-session-info-header = on.

Source
TlsSessionInfo.java
Linear Supertypes
CustomHeader, scaladsl.model.HttpHeader, ToStringRenderable, Renderable, HttpHeader, AnyRef, Any
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TlsSessionInfo
  2. CustomHeader
  3. HttpHeader
  4. ToStringRenderable
  5. Renderable
  6. HttpHeader
  7. AnyRef
  8. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new TlsSessionInfo()

Abstract Value Members

  1. abstract def getSession(): SSLSession

    returns

    the SSLSession this message was received over.

  2. abstract def lowercaseName(): String

    Returns the lower-cased name of the header.

    Returns the lower-cased name of the header.

    Definition Classes
    HttpHeaderHttpHeader
  3. abstract def name(): String

    Returns the name of the header.

    Returns the name of the header.

    Definition Classes
    CustomHeaderHttpHeaderHttpHeader
  4. abstract def renderInRequests(): Boolean

    Returns true if and only if the header is to be rendered in requests.

    Returns true if and only if the header is to be rendered in requests.

    Definition Classes
    HttpHeader
  5. abstract def renderInResponses(): Boolean

    Returns true if and only if the header is to be rendered in responses.

    Returns true if and only if the header is to be rendered in responses.

    Definition Classes
    HttpHeader
  6. abstract def value(): String

    Returns the String representation of the value of the header.

    Returns the String representation of the value of the header.

    Definition Classes
    CustomHeaderHttpHeaderHttpHeader

Concrete Value Members

  1. def is(nameInLowerCase: String): Boolean

    Returns true if and only if nameInLowerCase.equals(lowercaseName()).

    Returns true if and only if nameInLowerCase.equals(lowercaseName()).

    Definition Classes
    HttpHeaderHttpHeader
  2. def isNot(nameInLowerCase: String): Boolean

    Returns !is(nameInLowerCase).

    Returns !is(nameInLowerCase).

    Definition Classes
    HttpHeaderHttpHeader
  3. def toString(): String
    Definition Classes
    ToStringRenderable → AnyRef → Any
  4. def unsafeToString: String
    Definition Classes
    HttpHeader