Object

akka.http.javadsl.server

Directives

Related Doc: package server

Permalink

object Directives extends AllDirectives

INTERNAL API

Source
Directives.scala
Linear Supertypes
Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. Directives
  2. AllDirectives
  3. FramedEntityStreamingDirectives
  4. TimeoutDirectives
  5. WebSocketDirectives
  6. SecurityDirectives
  7. SchemeDirectives
  8. RouteDirectives
  9. RespondWithDirectives
  10. RangeDirectives
  11. PathDirectives
  12. ParameterDirectives
  13. MiscDirectives
  14. MethodDirectives
  15. MarshallingDirectives
  16. HostDirectives
  17. HeaderDirectives
  18. FutureDirectives
  19. FormFieldDirectives
  20. FileUploadDirectives
  21. FileAndResourceDirectives
  22. ExecutionDirectives
  23. DebuggingDirectives
  24. CookieDirectives
  25. CodingDirectives
  26. CacheConditionDirectives
  27. BasicDirectives
  28. AnyRef
  29. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def authenticateBasic[T](realm: String, authenticator: Function[Optional[ProvidedCredentials], Optional[T]], inner: Function[T, Route]): Route

    Permalink

    Wraps the inner route with Http Basic authentication support using a given Authenticator[T].

    Wraps the inner route with Http Basic authentication support using a given Authenticator[T]. The given authenticator determines whether the credentials in the request are valid and, if so, which user object to supply to the inner route.

    Authentication is required in this variant, i.e. the request is rejected if [authenticator] returns Optional.empty.

    Definition Classes
    SecurityDirectives
  6. def authenticateBasicAsync[T](realm: String, authenticator: Function[Optional[ProvidedCredentials], CompletionStage[Optional[T]]], inner: Function[T, Route]): Route

    Permalink

    Wraps the inner route with Http Basic authentication support.

    Wraps the inner route with Http Basic authentication support. The given authenticator determines whether the credentials in the request are valid and, if so, which user object to supply to the inner route.

    Authentication is required in this variant, i.e. the request is rejected if [authenticator] returns Optional.empty.

    Definition Classes
    SecurityDirectives
  7. def authenticateBasicAsyncOptional[T](realm: String, authenticator: Function[Optional[ProvidedCredentials], CompletionStage[Optional[T]]], inner: Function[Optional[T], Route]): Route

    Permalink

    Wraps the inner route with Http Basic authentication support.

    Wraps the inner route with Http Basic authentication support. The given authenticator determines whether the credentials in the request are valid and, if so, which user object to supply to the inner route.

    Authentication is optional in this variant.

    Definition Classes
    SecurityDirectives
    Annotations
    @CorrespondsTo()
  8. def authenticateBasicOptional[T](realm: String, authenticator: Function[Optional[ProvidedCredentials], Optional[T]], inner: Function[Optional[T], Route]): Route

    Permalink

    Wraps the inner route with Http Basic authentication support using a given Authenticator[T].

    Wraps the inner route with Http Basic authentication support using a given Authenticator[T]. The given authenticator determines whether the credentials in the request are valid and, if so, which user object to supply to the inner route.

    Authentication is optional in this variant.

    Definition Classes
    SecurityDirectives
    Annotations
    @CorrespondsTo()
  9. def authenticateBasicPF[T](realm: String, authenticator: PartialFunction[Optional[ProvidedCredentials], T], inner: Function[T, Route]): Route

    Permalink

    Wraps the inner route with Http Basic authentication support.

    Wraps the inner route with Http Basic authentication support. The given authenticator determines whether the credentials in the request are valid and, if so, which user object to supply to the inner route.

    Authentication is required in this variant, i.e. the request is rejected if [authenticator] returns Optional.empty.

    Definition Classes
    SecurityDirectives
  10. def authenticateBasicPFAsync[T](realm: String, authenticator: PartialFunction[Optional[ProvidedCredentials], CompletionStage[T]], inner: Function[T, Route]): Route

    Permalink

    Wraps the inner route with Http Basic authentication support.

    Wraps the inner route with Http Basic authentication support. The given authenticator determines whether the credentials in the request are valid and, if so, which user object to supply to the inner route.

    Authentication is required in this variant, i.e. the request is rejected if [authenticator] returns Optional.empty.

    Definition Classes
    SecurityDirectives
  11. def authenticateOAuth2[T](realm: String, authenticator: Function[Optional[ProvidedCredentials], Optional[T]], inner: Function[T, Route]): Route

    Permalink

    A directive that wraps the inner route with OAuth2 Bearer Token authentication support.

    A directive that wraps the inner route with OAuth2 Bearer Token authentication support. The given authenticator determines whether the credentials in the request are valid and, if so, which user object to supply to the inner route.

    Authentication is required in this variant, i.e. the request is rejected if [authenticator] returns Optional.empty.

    Definition Classes
    SecurityDirectives
  12. def authenticateOAuth2Async[T](realm: String, authenticator: Function[Optional[ProvidedCredentials], CompletionStage[Optional[T]]], inner: Function[T, Route]): Route

    Permalink

    A directive that wraps the inner route with OAuth2 Bearer Token authentication support.

    A directive that wraps the inner route with OAuth2 Bearer Token authentication support. The given authenticator determines whether the credentials in the request are valid and, if so, which user object to supply to the inner route.

    Authentication is required in this variant, i.e. the request is rejected if [authenticator] returns Optional.empty.

    Definition Classes
    SecurityDirectives
  13. def authenticateOAuth2AsyncOptional[T](realm: String, authenticator: Function[Optional[ProvidedCredentials], CompletionStage[Optional[T]]], inner: Function[Optional[T], Route]): Route

    Permalink

    A directive that wraps the inner route with OAuth2 Bearer Token authentication support.

    A directive that wraps the inner route with OAuth2 Bearer Token authentication support. The given authenticator determines whether the credentials in the request are valid and, if so, which user object to supply to the inner route.

    Authentication is optional in this variant.

    Definition Classes
    SecurityDirectives
    Annotations
    @CorrespondsTo()
  14. def authenticateOAuth2Optional[T](realm: String, authenticator: Function[Optional[ProvidedCredentials], Optional[T]], inner: Function[Optional[T], Route]): Route

    Permalink

    A directive that wraps the inner route with OAuth2 Bearer Token authentication support.

    A directive that wraps the inner route with OAuth2 Bearer Token authentication support. The given authenticator determines whether the credentials in the request are valid and, if so, which user object to supply to the inner route.

    Authentication is optional in this variant.

    Definition Classes
    SecurityDirectives
    Annotations
    @CorrespondsTo()
  15. def authenticateOrRejectWithChallenge[C <: HttpCredentials, T](c: Class[C], authenticator: Function[Optional[C], CompletionStage[Either[HttpChallenge, T]]], inner: Function[T, Route]): Route

    Permalink

    Lifts an authenticator function into a directive.

    Lifts an authenticator function into a directive. Same as authenticateOrRejectWithChallenge but only applies the authenticator function with a certain type of credentials.

    Definition Classes
    SecurityDirectives
  16. def authenticateOrRejectWithChallenge[T](authenticator: Function[Optional[HttpCredentials], CompletionStage[Either[HttpChallenge, T]]], inner: Function[T, Route]): Route

    Permalink

    Lifts an authenticator function into a directive.

    Lifts an authenticator function into a directive. The authenticator function gets passed in credentials from the akka.http.javadsl.model.headers.Authorization header of the request. If the function returns Right(user) the user object is provided to the inner route. If the function returns Left(challenge) the request is rejected with an akka.http.javadsl.server.AuthenticationFailedRejection that contains this challenge to be added to the response.

    Definition Classes
    SecurityDirectives
  17. def authorize(check: Supplier[Boolean], inner: Supplier[Route]): Route

    Permalink

    Applies the given authorization check to the request.

    Applies the given authorization check to the request. If the check fails the route is rejected with an akka.http.javadsl.server.AuthorizationFailedRejection.

    Definition Classes
    SecurityDirectives
  18. def authorizeAsync(check: Supplier[CompletionStage[Boolean]], inner: Supplier[Route]): Route

    Permalink

    Applies the given authorization check to the request.

    Applies the given authorization check to the request. If the check fails the route is rejected with an akka.http.javadsl.server.AuthorizationFailedRejection.

    Definition Classes
    SecurityDirectives
  19. def authorizeAsyncWithRequestContext(check: Function[RequestContext, CompletionStage[Boolean]], inner: Supplier[Route]): Route

    Permalink

    Asynchronous version of authorize.

    Asynchronous version of authorize. If the CompletionStage fails or is completed with false authorization fails and the route is rejected with an akka.http.javadsl.server.AuthorizationFailedRejection.

    Definition Classes
    SecurityDirectives
    Annotations
    @CorrespondsTo()
  20. def authorizeWithRequestContext(check: Function[RequestContext, Boolean], inner: Supplier[Route]): Route

    Permalink

    Applies the given authorization check to the request.

    Applies the given authorization check to the request. If the check fails the route is rejected with an akka.http.javadsl.server.AuthorizationFailedRejection.

    Definition Classes
    SecurityDirectives
    Annotations
    @CorrespondsTo()
  21. def cancelRejection(rejection: Rejection, inner: Supplier[Route]): Route

    Permalink

    Adds a TransformationRejection cancelling all rejections equal to the given one to the list of rejections potentially coming back from the inner route.

    Adds a TransformationRejection cancelling all rejections equal to the given one to the list of rejections potentially coming back from the inner route.

    Definition Classes
    BasicDirectives
  22. def cancelRejections(filter: Predicate[Rejection], inner: Supplier[Route]): Route

    Permalink

    Adds a TransformationRejection cancelling all rejections for which the given filter function returns true to the list of rejections potentially coming back from the inner route.

    Adds a TransformationRejection cancelling all rejections for which the given filter function returns true to the list of rejections potentially coming back from the inner route.

    Definition Classes
    BasicDirectives
  23. def cancelRejections(classes: Iterable[Class[_]], inner: Supplier[Route]): Route

    Permalink

    Adds a TransformationRejection cancelling all rejections of one of the given classes to the list of rejections potentially coming back from the inner route.

    Adds a TransformationRejection cancelling all rejections of one of the given classes to the list of rejections potentially coming back from the inner route.

    Definition Classes
    BasicDirectives
  24. def checkSameOrigin(allowed: HttpOriginRange, inner: Supplier[Route]): Route

    Permalink

    Checks that request comes from the same origin.

    Checks that request comes from the same origin. Extracts the Origin header value and verifies that allowed range contains the obtained value. In the case of absent of the Origin header rejects with MissingHeaderRejection. If the origin value is not in the allowed range rejects with an InvalidOriginRejection and StatusCodes.FORBIDDEN status.

    Definition Classes
    HeaderDirectives
  25. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. def complete(entity: RequestEntity): RouteAdapter

    Permalink

    Completes the request as HTTP 200 OK with the given value as response entity.

    Completes the request as HTTP 200 OK with the given value as response entity.

    Definition Classes
    RouteDirectives
  27. def complete(headers: Iterable[HttpHeader], entity: RequestEntity): RouteAdapter

    Permalink

    Completes the request as HTTP 200 OK, adding the given headers and response entity.

    Completes the request as HTTP 200 OK, adding the given headers and response entity.

    Definition Classes
    RouteDirectives
  28. def complete[T](headers: Iterable[HttpHeader], value: T, marshaller: Marshaller[T, RequestEntity]): RouteAdapter

    Permalink

    Completes the request as HTTP 200 OK, adding the given headers, and marshalling the given value as response entity.

    Completes the request as HTTP 200 OK, adding the given headers, and marshalling the given value as response entity.

    Definition Classes
    RouteDirectives
  29. def complete(status: StatusCode, entity: String): RouteAdapter

    Permalink

    Completes the request using the given status code and the given body as UTF-8.

    Completes the request using the given status code and the given body as UTF-8.

    Definition Classes
    RouteDirectives
  30. def complete(status: StatusCode, entity: RequestEntity): RouteAdapter

    Permalink

    Completes the request using the given status code and response entity.

    Completes the request using the given status code and response entity.

    Definition Classes
    RouteDirectives
  31. def complete[T](status: StatusCode, value: T, marshaller: Marshaller[T, RequestEntity]): RouteAdapter

    Permalink

    Completes the request using the given status code, marshalling the given value as response entity.

    Completes the request using the given status code, marshalling the given value as response entity.

    Definition Classes
    RouteDirectives
  32. def complete(status: StatusCode, headers: Iterable[HttpHeader], entity: RequestEntity): RouteAdapter

    Permalink

    Completes the request using the given status code, headers, and response entity.

    Completes the request using the given status code, headers, and response entity.

    Definition Classes
    RouteDirectives
  33. def complete[T](status: StatusCode, headers: Iterable[HttpHeader], value: T, marshaller: Marshaller[T, RequestEntity]): RouteAdapter

    Permalink

    Completes the request using the given status code and headers, marshalling the given value as response entity.

    Completes the request using the given status code and headers, marshalling the given value as response entity.

    Definition Classes
    RouteDirectives
  34. def complete[T](value: T, marshaller: Marshaller[T, HttpResponse]): RouteAdapter

    Permalink

    Completes the request by marshalling the given value into an http response.

    Completes the request by marshalling the given value into an http response.

    Definition Classes
    RouteDirectives
  35. def complete(status: StatusCode): Route

    Permalink

    Completes the request using the given status code.

    Completes the request using the given status code.

    Definition Classes
    RouteDirectives
  36. def complete(response: HttpResponse): Route

    Permalink

    Completes the request using the given http response.

    Completes the request using the given http response.

    Definition Classes
    RouteDirectives
  37. def complete(body: String): Route

    Permalink

    Completes the request using an HTTP 200 OK status code and the given body as UTF-8 entity.

    Completes the request using an HTTP 200 OK status code and the given body as UTF-8 entity.

    Definition Classes
    RouteDirectives
  38. def completeOK[T](value: T, marshaller: Marshaller[T, RequestEntity]): RouteAdapter

    Permalink

    Completes the request as HTTP 200 OK, marshalling the given value as response entity.

    Completes the request as HTTP 200 OK, marshalling the given value as response entity.

    Definition Classes
    RouteDirectives
    Annotations
    @CorrespondsTo()
  39. def completeOKWithFuture[T](value: CompletionStage[T], marshaller: Marshaller[T, RequestEntity]): RouteAdapter

    Permalink

    Completes the request with an OK status code by marshalling the given value into an http response.

    Completes the request with an OK status code by marshalling the given value into an http response.

    Definition Classes
    RouteDirectives
    Annotations
    @CorrespondsTo()
  40. def completeOKWithFuture(value: CompletionStage[RequestEntity]): RouteAdapter

    Permalink

    Completes the request by marshalling the given future value into an http response.

    Completes the request by marshalling the given future value into an http response.

    Definition Classes
    RouteDirectives
    Annotations
    @CorrespondsTo()
  41. def completeOKWithFuture[T](value: Future[T], marshaller: Marshaller[T, RequestEntity]): RouteAdapter

    Permalink

    Completes the request by marshalling the given value into an http response.

    Completes the request by marshalling the given value into an http response.

    Definition Classes
    RouteDirectives
    Annotations
    @CorrespondsTo()
  42. def completeOKWithFutureString(value: CompletionStage[String]): RouteAdapter

    Permalink

    Completes the request by marshalling the given future value into an http response.

    Completes the request by marshalling the given future value into an http response.

    Definition Classes
    RouteDirectives
    Annotations
    @CorrespondsTo()
  43. def completeOKWithFutureString(value: Future[String]): RouteAdapter

    Permalink

    Completes the request by marshalling the given future value into an http response.

    Completes the request by marshalling the given future value into an http response.

    Definition Classes
    RouteDirectives
    Annotations
    @CorrespondsTo()
  44. def completeOKWithSource[T, M](source: Source[T, M])(implicit m: Marshaller[T, RequestEntity], support: EntityStreamingSupport): Route

    Permalink
    Definition Classes
    FramedEntityStreamingDirectives
    Annotations
    @CorrespondsTo()
  45. def completeOrRecoverWith[T](f: Supplier[CompletionStage[T]], marshaller: Marshaller[T, RequestEntity], inner: Function[Throwable, Route]): Route

    Permalink

    "Unwraps" a CompletionStage<T> and runs the inner route when the stage has failed with the stage's failure exception as an extraction of type Throwable.

    "Unwraps" a CompletionStage<T> and runs the inner route when the stage has failed with the stage's failure exception as an extraction of type Throwable. If the completion stage succeeds the request is completed using the values marshaller (This directive therefore requires a marshaller for the completion stage value type to be provided.)

    Definition Classes
    FutureDirectives
  46. def completeWithFuture[T](value: CompletionStage[T], marshaller: Marshaller[T, HttpResponse]): RouteAdapter

    Permalink

    Completes the request by marshalling the given value into an http response.

    Completes the request by marshalling the given value into an http response.

    Definition Classes
    RouteDirectives
    Annotations
    @CorrespondsTo()
  47. def completeWithFuture(value: CompletionStage[HttpResponse]): RouteAdapter

    Permalink

    Completes the request by marshalling the given future value into an http response.

    Completes the request by marshalling the given future value into an http response.

    Definition Classes
    RouteDirectives
    Annotations
    @CorrespondsTo()
  48. def completeWithFuture[T](value: Future[T], marshaller: Marshaller[T, HttpResponse]): RouteAdapter

    Permalink

    Completes the request by marshalling the given value into an http response.

    Completes the request by marshalling the given value into an http response.

    Definition Classes
    RouteDirectives
    Annotations
    @CorrespondsTo()
  49. def completeWithFutureResponse(value: Future[HttpResponse]): RouteAdapter

    Permalink

    Completes the request by marshalling the given future value into an http response.

    Completes the request by marshalling the given future value into an http response.

    Definition Classes
    RouteDirectives
    Annotations
    @CorrespondsTo()
  50. def completeWithFutureStatus(status: CompletionStage[StatusCode]): Route

    Permalink

    Completes the request using the given future status code.

    Completes the request using the given future status code.

    Definition Classes
    RouteDirectives
    Annotations
    @CorrespondsTo()
  51. def completeWithFutureStatus(status: Future[StatusCode]): Route

    Permalink

    Completes the request using the given future status code.

    Completes the request using the given future status code.

    Definition Classes
    RouteDirectives
    Annotations
    @CorrespondsTo()
  52. def completeWithSource[T, M](source: Source[T, M])(implicit m: Marshaller[T, ByteString], support: EntityStreamingSupport): Route

    Permalink
    Definition Classes
    FramedEntityStreamingDirectives
    Annotations
    @CorrespondsTo()
  53. def conditional(eTag: Optional[EntityTag], lastModified: Optional[DateTime], inner: Supplier[Route]): Route

    Permalink

    Wraps its inner route with support for Conditional Requests as defined by http://tools.ietf.org/html/rfc7232

    Wraps its inner route with support for Conditional Requests as defined by http://tools.ietf.org/html/rfc7232

    In particular the algorithm defined by http://tools.ietf.org/html/rfc7232#section-6 is implemented by this directive.

    Note: if you want to combine this directive with withRangeSupport(...) you need to put it on the *outside* of the withRangeSupport(...) directive, i.e. withRangeSupport(...) must be on a deeper level in your route structure in order to function correctly.

    Definition Classes
    CacheConditionDirectives
  54. def conditional(eTag: EntityTag, lastModified: DateTime, inner: Supplier[Route]): Route

    Permalink

    Wraps its inner route with support for Conditional Requests as defined by http://tools.ietf.org/html/rfc7232

    Wraps its inner route with support for Conditional Requests as defined by http://tools.ietf.org/html/rfc7232

    In particular the algorithm defined by http://tools.ietf.org/html/rfc7232#section-6 is implemented by this directive.

    Note: if you want to combine this directive with withRangeSupport(...) you need to put it on the *outside* of the withRangeSupport(...) directive, i.e. withRangeSupport(...) must be on a deeper level in your route structure in order to function correctly.

    Definition Classes
    CacheConditionDirectives
  55. def conditional(lastModified: DateTime, inner: Supplier[Route]): Route

    Permalink

    Wraps its inner route with support for Conditional Requests as defined by http://tools.ietf.org/html/rfc7232

    Wraps its inner route with support for Conditional Requests as defined by http://tools.ietf.org/html/rfc7232

    In particular the algorithm defined by http://tools.ietf.org/html/rfc7232#section-6 is implemented by this directive.

    Note: if you want to combine this directive with withRangeSupport(...) you need to put it on the *outside* of the withRangeSupport(...) directive, i.e. withRangeSupport(...) must be on a deeper level in your route structure in order to function correctly.

    Definition Classes
    CacheConditionDirectives
  56. def conditional(eTag: EntityTag, inner: Supplier[Route]): Route

    Permalink

    Wraps its inner route with support for Conditional Requests as defined by http://tools.ietf.org/html/rfc7232

    Wraps its inner route with support for Conditional Requests as defined by http://tools.ietf.org/html/rfc7232

    In particular the algorithm defined by http://tools.ietf.org/html/rfc7232#section-6 is implemented by this directive.

    Note: if you want to combine this directive with withRangeSupport(...) you need to put it on the *outside* of the withRangeSupport(...) directive, i.e. withRangeSupport(...) must be on a deeper level in your route structure in order to function correctly.

    Definition Classes
    CacheConditionDirectives
  57. def cookie(name: String, inner: Function[HttpCookiePair, Route]): Route

    Permalink

    Extracts the HttpCookiePair with the given name.

    Extracts the HttpCookiePair with the given name. If the cookie is not present the request is rejected with a respective akka.http.javadsl.server.MissingCookieRejection.

    Definition Classes
    CookieDirectives
  58. def decodeRequest(inner: Supplier[Route]): Route

    Permalink

    Decompresses the incoming request if it is gzip or deflate compressed.

    Decompresses the incoming request if it is gzip or deflate compressed. Uncompressed requests are passed through untouched. If the request encoded with another encoding the request is rejected with an UnsupportedRequestEncodingRejection.

    Definition Classes
    CodingDirectives
  59. def decodeRequestWith(coders: Iterable[Coder], inner: Supplier[Route]): Route

    Permalink

    Decodes the incoming request if it is encoded with one of the given encoders.

    Decodes the incoming request if it is encoded with one of the given encoders. If the request encoding doesn't match one of the given encoders the request is rejected with an UnsupportedRequestEncodingRejection. If no decoders are given the default encoders (Gzip, Deflate, NoCoding) are used.

    Definition Classes
    CodingDirectives
  60. def decodeRequestWith(coder: Coder, inner: Supplier[Route]): Route

    Permalink

    Decodes the incoming request using the given Decoder.

    Decodes the incoming request using the given Decoder. If the request encoding doesn't match the request is rejected with an UnsupportedRequestEncodingRejection.

    Definition Classes
    CodingDirectives
  61. def defaultContentTypeResolver: ContentTypeResolver

    Permalink

    Default ContentTypeResolver.

  62. def defaultDirectoryRenderer: DirectoryRenderer

    Permalink

    Default DirectoryRenderer to be used with directory listing directives.

    Default DirectoryRenderer to be used with directory listing directives.

    Definition Classes
    FileAndResourceDirectives
  63. def delete(inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    MethodDirectives
  64. def deleteCookie(name: String, domain: String, path: String, inner: Supplier[Route]): Route

    Permalink

    Adds a Set-Cookie response header expiring the cookie with the given properties.

    Adds a Set-Cookie response header expiring the cookie with the given properties.

    name

    Name of the cookie to match

    domain

    Domain of the cookie to match, or empty string to match any domain

    path

    Path of the cookie to match, or empty string to match any path

    Definition Classes
    CookieDirectives
  65. def deleteCookie(name: String, domain: String, inner: Supplier[Route]): Route

    Permalink

    Adds a Set-Cookie response header expiring the cookie with the given properties.

    Adds a Set-Cookie response header expiring the cookie with the given properties.

    name

    Name of the cookie to match

    domain

    Domain of the cookie to match, or empty string to match any domain

    Definition Classes
    CookieDirectives
  66. def deleteCookie(name: String, inner: Supplier[Route]): Route

    Permalink

    Adds a Set-Cookie response header expiring the cookie with the given properties.

    Adds a Set-Cookie response header expiring the cookie with the given properties.

    name

    Name of the cookie to match

    Definition Classes
    CookieDirectives
  67. def deleteCookie(cookies: Iterable[HttpCookie], inner: Supplier[Route]): Route

    Permalink

    Adds a Set-Cookie response header expiring the given cookies.

    Adds a Set-Cookie response header expiring the given cookies.

    Definition Classes
    CookieDirectives
  68. def deleteCookie(cookie: HttpCookie, inner: Supplier[Route]): Route

    Permalink

    Adds a Set-Cookie response header expiring the given cookie.

    Adds a Set-Cookie response header expiring the given cookie.

    Definition Classes
    CookieDirectives
  69. def encodeResponse(inner: Supplier[Route]): Route

    Permalink

    Encodes the response with the encoding that is requested by the client via the Accept- Encoding header.

    Encodes the response with the encoding that is requested by the client via the Accept- Encoding header. The response encoding is determined by the rules specified in http://tools.ietf.org/html/rfc7231#section-5.3.4.

    If the Accept-Encoding header is missing or empty or specifies an encoding other than identity, gzip or deflate then no encoding is used.

    Definition Classes
    CodingDirectives
  70. def encodeResponseWith(coders: Iterable[Coder], inner: Supplier[Route]): Route

    Permalink

    Encodes the response with the encoding that is requested by the client via the Accept- Encoding header.

    Encodes the response with the encoding that is requested by the client via the Accept- Encoding header. The response encoding is determined by the rules specified in http://tools.ietf.org/html/rfc7231#section-5.3.4.

    If the Accept-Encoding header is missing then the response is encoded using the first encoder.

    If the Accept-Encoding header is empty and NoCoding is part of the encoders then no response encoding is used. Otherwise the request is rejected.

    If [encoders] is empty, no encoding is performed.

    Definition Classes
    CodingDirectives
  71. def entity[T](unmarshaller: Unmarshaller[_ >: HttpEntity, T], inner: Function[T, Route]): Route

    Permalink

    Unmarshalls the requests entity using the given unmarshaller, and passes the result to [inner].

    Unmarshalls the requests entity using the given unmarshaller, and passes the result to [inner]. If there is a problem with unmarshalling the request is rejected with the akka.http.javadsl.server.Rejection produced by the unmarshaller.

    Definition Classes
    MarshallingDirectives
  72. def entityAsSourceOf[T](um: Unmarshaller[ByteString, T], support: EntityStreamingSupport, inner: Function[Source[T, NotUsed], Route]): Route

    Permalink
    Definition Classes
    FramedEntityStreamingDirectives
    Annotations
    @CorrespondsTo()
  73. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  74. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  75. def extract[T](extract: Function[RequestContext, T], inner: Function[T, Route]): Route

    Permalink

    Extracts a single value using the given function.

    Extracts a single value using the given function.

    Definition Classes
    BasicDirectives
  76. def extractActorSystem(inner: Function[ActorSystem, Route]): Route

    Permalink

    Extracts the akka.actor.ActorSystem if the available Materializer is an akka.stream.ActorMaterializer.

    Extracts the akka.actor.ActorSystem if the available Materializer is an akka.stream.ActorMaterializer. Otherwise throws an exception as it won't be able to extract the system from arbitrary materializers.

    Definition Classes
    BasicDirectives
  77. def extractClientIP(inner: Function[RemoteAddress, Route]): Route

    Permalink

    Extracts the client's IP from either the X-Forwarded-For, Remote-Address or X-Real-IP header (in that order of priority).

    Extracts the client's IP from either the X-Forwarded-For, Remote-Address or X-Real-IP header (in that order of priority).

    Definition Classes
    MiscDirectives
  78. def extractCredentials(inner: Function[Optional[HttpCredentials], Route]): Route

    Permalink

    Extracts the potentially present HttpCredentials provided with the request's akka.http.javadsl.model.headers.Authorization header.

    Extracts the potentially present HttpCredentials provided with the request's akka.http.javadsl.model.headers.Authorization header.

    Definition Classes
    SecurityDirectives
  79. def extractDataBytes(inner: Function[Source[ByteString, Any], Route]): RouteAdapter

    Permalink

    Extracts the entities dataBytes akka.stream.javadsl.Source from the akka.http.javadsl.server.RequestContext.

    Extracts the entities dataBytes akka.stream.javadsl.Source from the akka.http.javadsl.server.RequestContext.

    Definition Classes
    BasicDirectives
  80. def extractEntity(inner: Function[RequestEntity, Route]): Route

    Permalink

    Extracts the current http request entity.

    Extracts the current http request entity.

    Definition Classes
    BasicDirectives
    Annotations
    @CorrespondsTo()
  81. def extractExecutionContext(inner: Function[ExecutionContextExecutor, Route]): Route

    Permalink

    Extracts the ExecutionContextExecutor from the RequestContext.

    Extracts the ExecutionContextExecutor from the RequestContext.

    Definition Classes
    BasicDirectives
  82. def extractHost(inner: Function[String, Route]): Route

    Permalink

    Extracts the hostname part of the Host request header value.

    Extracts the hostname part of the Host request header value.

    Definition Classes
    HostDirectives
  83. def extractLog(inner: Function[LoggingAdapter, Route]): Route

    Permalink

    Extracts the LoggingAdapter

    Extracts the LoggingAdapter

    Definition Classes
    BasicDirectives
  84. def extractMatchedPath(inner: Function[String, Route]): RouteAdapter

    Permalink

    Extracts the already matched path from the RequestContext.

    Extracts the already matched path from the RequestContext.

    Definition Classes
    BasicDirectives
  85. def extractMaterializer(inner: Function[Materializer, Route]): Route

    Permalink

    Extracts the Materializer from the RequestContext.

    Extracts the Materializer from the RequestContext.

    Definition Classes
    BasicDirectives
  86. def extractMethod(inner: Function[HttpMethod, Route]): RouteAdapter

    Permalink
    Definition Classes
    MethodDirectives
  87. def extractOfferedWsProtocols(inner: Function[List[String], Route]): Route

    Permalink

    Extract the list of WebSocket subprotocols as offered by the client in the Sec-WebSocket-Protocol header if this is a WebSocket request.

    Extract the list of WebSocket subprotocols as offered by the client in the Sec-WebSocket-Protocol header if this is a WebSocket request. Rejects with an ExpectedWebSocketRequestRejection, otherwise.

    Definition Classes
    WebSocketDirectives
  88. def extractParserSettings(inner: Function[ParserSettings, Route]): RouteAdapter

    Permalink

    Extracts the akka.http.javadsl.settings.ParserSettings from the akka.http.javadsl.server.RequestContext.

    Extracts the akka.http.javadsl.settings.ParserSettings from the akka.http.javadsl.server.RequestContext.

    Definition Classes
    BasicDirectives
  89. def extractRequest(inner: Function[HttpRequest, Route]): RouteAdapter

    Permalink

    Extracts the current HttpRequest instance.

    Extracts the current HttpRequest instance.

    Definition Classes
    BasicDirectives
  90. def extractRequestContext(inner: Function[RequestContext, Route]): RouteAdapter

    Permalink

    Extracts the akka.http.javadsl.server.RequestContext itself.

    Definition Classes
    BasicDirectives
  91. def extractRequestEntity(inner: Function[RequestEntity, Route]): Route

    Permalink

    Extracts the akka.http.javadsl.model.RequestEntity from the akka.http.javadsl.server.RequestContext.

    Extracts the akka.http.javadsl.model.RequestEntity from the akka.http.javadsl.server.RequestContext.

    Definition Classes
    BasicDirectives
  92. def extractScheme(inner: Function[String, Route]): Route

    Permalink

    Extracts the Uri scheme from the request.

    Extracts the Uri scheme from the request.

    Definition Classes
    SchemeDirectives
  93. def extractSettings(inner: Function[RoutingSettings, Route]): RouteAdapter

    Permalink

    Extracts the RoutingSettings from the akka.http.javadsl.server.RequestContext.

    Extracts the RoutingSettings from the akka.http.javadsl.server.RequestContext.

    Definition Classes
    BasicDirectives
  94. def extractStrictEntity(timeout: FiniteDuration, inner: Function[Strict, Route]): Route

    Permalink

    WARNING: This will read the entire request entity into memory regardless of size and effectively disable streaming.

    WARNING: This will read the entire request entity into memory regardless of size and effectively disable streaming.

    Converts the HttpEntity from the akka.http.javadsl.server.RequestContext into an akka.http.javadsl.model.HttpEntity.Strict and extracts it, or fails the route if unable to drain the entire request body within the timeout.

    timeout

    The directive is failed if the stream isn't completed after the given timeout.

    Definition Classes
    BasicDirectives
  95. def extractUnmatchedPath(inner: Function[String, Route]): RouteAdapter

    Permalink

    Extracts the yet unmatched path from the RequestContext.

    Extracts the yet unmatched path from the RequestContext.

    Definition Classes
    BasicDirectives
  96. def extractUpgradeToWebSocket(inner: Function[UpgradeToWebSocket, Route]): Route

    Permalink

    Extract the UpgradeToWebSocket header if existent.

    Extract the UpgradeToWebSocket header if existent. Rejects with an ExpectedWebSocketRequestRejection, otherwise.

    Definition Classes
    WebSocketDirectives
  97. def extractUri(inner: Function[Uri, Route]): RouteAdapter

    Permalink

    Extracts the complete request URI.

    Extracts the complete request URI.

    Definition Classes
    BasicDirectives
  98. def failWith(error: Throwable): Route

    Permalink

    Bubbles the given error up the response chain, where it is dealt with by the closest handleExceptions directive and its ExceptionHandler.

    Bubbles the given error up the response chain, where it is dealt with by the closest handleExceptions directive and its ExceptionHandler.

    Definition Classes
    RouteDirectives
  99. def fileUpload(fieldName: String, inner: BiFunction[FileInfo, Source[ByteString, Any], Route]): Route

    Permalink

    Collects each body part that is a multipart file as a tuple containing metadata and a Source for streaming the file contents somewhere.

    Collects each body part that is a multipart file as a tuple containing metadata and a Source for streaming the file contents somewhere. If there is no such field the request will be rejected, if there are multiple file parts with the same name, the first one will be used and the subsequent ones ignored.

    Definition Classes
    FileUploadDirectives
  100. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  101. def formField[T](t: Unmarshaller[String, T], name: String, inner: Function[T, Route]): Route

    Permalink
    Definition Classes
    FormFieldDirectives
  102. def formField(name: String, inner: Function[String, Route]): Route

    Permalink
    Definition Classes
    FormFieldDirectives
  103. def formFieldList(inner: Function[List[Entry[String, String]], Route]): Route

    Permalink

    Extracts HTTP form fields from the request as a Map.Entry<String, String>>.

    Extracts HTTP form fields from the request as a Map.Entry<String, String>>.

    Definition Classes
    FormFieldDirectives
    Annotations
    @CorrespondsTo()
  104. def formFieldList[T](t: Unmarshaller[String, T], name: String, inner: Function[List[T], Route]): Route

    Permalink
    Definition Classes
    FormFieldDirectives
    Annotations
    @CorrespondsTo()
  105. def formFieldList(name: String, inner: Function[List[String], Route]): Route

    Permalink
    Definition Classes
    FormFieldDirectives
    Annotations
    @CorrespondsTo()
  106. def formFieldMap(inner: Function[Map[String, String], Route]): Route

    Permalink

    Extracts HTTP form fields from the request as a Map<String, String>.

    Extracts HTTP form fields from the request as a Map<String, String>.

    Definition Classes
    FormFieldDirectives
  107. def formFieldMultiMap(inner: Function[Map[String, List[String]], Route]): Route

    Permalink

    Extracts HTTP form fields from the request as a Map<String, List<String>>.

    Extracts HTTP form fields from the request as a Map<String, List<String>>.

    Definition Classes
    FormFieldDirectives
  108. def formFieldOptional[T](t: Unmarshaller[String, T], name: String, inner: Function[Optional[T], Route]): Route

    Permalink
    Definition Classes
    FormFieldDirectives
    Annotations
    @CorrespondsTo()
  109. def formFieldOptional(name: String, inner: Function[Optional[String], Route]): Route

    Permalink
    Definition Classes
    FormFieldDirectives
    Annotations
    @CorrespondsTo()
  110. def get(inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    MethodDirectives
  111. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  112. def getFromBrowseableDirectories(directories: String*): Route

    Permalink

    Serves the content of the given directories as a file system browser, i.e.

    Serves the content of the given directories as a file system browser, i.e. files are sent and directories served as browseable listings.

    Definition Classes
    DirectivesFileAndResourceDirectives
    Annotations
    @varargs()
  113. def getFromBrowseableDirectories(directories: Iterable[String], resolver: ContentTypeResolver): Route

    Permalink

    Serves the content of the given directories as a file system browser, i.e.

    Serves the content of the given directories as a file system browser, i.e. files are sent and directories served as browseable listings.

    Definition Classes
    FileAndResourceDirectives
  114. def getFromBrowseableDirectories(directories: Iterable[String], renderer: DirectoryRenderer): Route

    Permalink

    Serves the content of the given directories as a file system browser, i.e.

    Serves the content of the given directories as a file system browser, i.e. files are sent and directories served as browseable listings.

    Definition Classes
    FileAndResourceDirectives
  115. def getFromBrowseableDirectories(directories: Iterable[String], renderer: DirectoryRenderer, resolver: ContentTypeResolver): Route

    Permalink

    Serves the content of the given directories as a file system browser, i.e.

    Serves the content of the given directories as a file system browser, i.e. files are sent and directories served as browseable listings.

    Definition Classes
    FileAndResourceDirectives
  116. def getFromBrowseableDirectory(directory: String): Route

    Permalink

    Same as getFromBrowseableDirectories with only one directory.

    Same as getFromBrowseableDirectories with only one directory.

    Definition Classes
    FileAndResourceDirectives
  117. def getFromBrowseableDirectory(directory: String, resolver: ContentTypeResolver): Route

    Permalink

    Same as getFromBrowseableDirectories with only one directory.

    Same as getFromBrowseableDirectories with only one directory.

    Definition Classes
    FileAndResourceDirectives
  118. def getFromBrowseableDirectory(directory: String, renderer: DirectoryRenderer): Route

    Permalink

    Same as getFromBrowseableDirectories with only one directory.

    Same as getFromBrowseableDirectories with only one directory.

    Definition Classes
    FileAndResourceDirectives
  119. def getFromBrowseableDirectory(directory: String, renderer: DirectoryRenderer, resolver: ContentTypeResolver): Route

    Permalink

    Same as getFromBrowseableDirectories with only one directory.

    Same as getFromBrowseableDirectories with only one directory.

    Definition Classes
    FileAndResourceDirectives
  120. def getFromDirectory(directoryPath: String, resolver: ContentTypeResolver): Route

    Permalink

    Completes GET requests with the content of a file underneath the given directory, using the given content-type resolver.

    Completes GET requests with the content of a file underneath the given directory, using the given content-type resolver. If the file cannot be read the Route rejects the request.

    Definition Classes
    FileAndResourceDirectives
  121. def getFromDirectory(directoryPath: String): Route

    Permalink

    Completes GET requests with the content of a file underneath the given directory, using the default content-type resolver.

    Completes GET requests with the content of a file underneath the given directory, using the default content-type resolver. If the file cannot be read the Route rejects the request.

    Definition Classes
    FileAndResourceDirectives
  122. def getFromFile(file: String, resolver: ContentTypeResolver): Route

    Permalink

    Completes GET requests with the content of the given file, resolving the content type using the given resolver.

    Completes GET requests with the content of the given file, resolving the content type using the given resolver. If the file cannot be found or read the request is rejected.

    Definition Classes
    FileAndResourceDirectives
  123. def getFromFile(file: String): Route

    Permalink

    Completes GET requests with the content of the given file, resolving the content type using the default resolver.

    Completes GET requests with the content of the given file, resolving the content type using the default resolver. If the file cannot be found or read the request is rejected.

    Definition Classes
    FileAndResourceDirectives
  124. def getFromFile(file: File, contentType: ContentType): Route

    Permalink

    Completes GET requests with the content of the given file, using the content type.

    Completes GET requests with the content of the given file, using the content type. If the file cannot be found or read the request is rejected.

    Definition Classes
    FileAndResourceDirectives
  125. def getFromFile(file: File, resolver: ContentTypeResolver): Route

    Permalink

    Completes GET requests with the content of the given file, resolving the content type using the given resolver.

    Completes GET requests with the content of the given file, resolving the content type using the given resolver. If the file cannot be found or read the request is rejected.

    Definition Classes
    FileAndResourceDirectives
  126. def getFromFile(file: File): Route

    Permalink

    Completes GET requests with the content of the given file, resolving the content type using the default resolver.

    Completes GET requests with the content of the given file, resolving the content type using the default resolver. If the file cannot be found or read the request is rejected.

    Definition Classes
    FileAndResourceDirectives
  127. def getFromResource(path: String, contentType: ContentType, classLoader: ClassLoader): Route

    Permalink

    Completes GET requests with the content of the given resource loaded from the given ClassLoader, with the given content type.

    Completes GET requests with the content of the given resource loaded from the given ClassLoader, with the given content type. If the resource cannot be found or read the Route rejects the request.

    Definition Classes
    FileAndResourceDirectives
  128. def getFromResource(path: String, contentType: ContentType): Route

    Permalink

    Completes GET requests with the content of the given resource loaded from the default ClassLoader, with the given content type.

    Completes GET requests with the content of the given resource loaded from the default ClassLoader, with the given content type. If the resource cannot be found or read the Route rejects the request.

    Definition Classes
    FileAndResourceDirectives
  129. def getFromResource(path: String, resolver: ContentTypeResolver): Route

    Permalink

    Completes GET requests with the content of the given resource loaded from the default ClassLoader, using the given content type resolver.

    Completes GET requests with the content of the given resource loaded from the default ClassLoader, using the given content type resolver. If the resource cannot be found or read the Route rejects the request.

    Definition Classes
    FileAndResourceDirectives
  130. def getFromResource(path: String): Route

    Permalink

    Completes GET requests with the content of the given resource loaded from the default ClassLoader, using the default content type resolver.

    Completes GET requests with the content of the given resource loaded from the default ClassLoader, using the default content type resolver. If the resource cannot be found or read the Route rejects the request.

    Definition Classes
    FileAndResourceDirectives
  131. def getFromResourceDirectory(directoryName: String, resolver: ContentTypeResolver, classLoader: ClassLoader): Route

    Permalink

    Same as "getFromDirectory" except that the file is not fetched from the file system but rather from a "resource directory", using the given ClassLoader, resolving content type using the given content type resolver.

    Same as "getFromDirectory" except that the file is not fetched from the file system but rather from a "resource directory", using the given ClassLoader, resolving content type using the given content type resolver.

    If the requested resource is itself a directory or cannot be found or read the Route rejects the request.

    Definition Classes
    FileAndResourceDirectives
  132. def getFromResourceDirectory(directoryName: String, resolver: ContentTypeResolver): Route

    Permalink

    Same as "getFromDirectory" except that the file is not fetched from the file system but rather from a "resource directory", using the default ClassLoader, resolving content type using the given content type resolver.

    Same as "getFromDirectory" except that the file is not fetched from the file system but rather from a "resource directory", using the default ClassLoader, resolving content type using the given content type resolver.

    If the requested resource is itself a directory or cannot be found or read the Route rejects the request.

    Definition Classes
    FileAndResourceDirectives
  133. def getFromResourceDirectory(directoryName: String, classLoader: ClassLoader): Route

    Permalink

    Same as "getFromDirectory" except that the file is not fetched from the file system but rather from a "resource directory", using the given ClassLoader, resolving content type using the default content type resolver.

    Same as "getFromDirectory" except that the file is not fetched from the file system but rather from a "resource directory", using the given ClassLoader, resolving content type using the default content type resolver.

    If the requested resource is itself a directory or cannot be found or read the Route rejects the request.

    Definition Classes
    FileAndResourceDirectives
  134. def getFromResourceDirectory(directoryName: String): Route

    Permalink

    Same as "getFromDirectory" except that the file is not fetched from the file system but rather from a "resource directory", using the default ClassLoader, resolving content type using the default content type resolver.

    Same as "getFromDirectory" except that the file is not fetched from the file system but rather from a "resource directory", using the default ClassLoader, resolving content type using the default content type resolver.

    If the requested resource is itself a directory or cannot be found or read the Route rejects the request.

    Definition Classes
    FileAndResourceDirectives
  135. def handleExceptions(handler: ExceptionHandler, inner: Supplier[Route]): RouteAdapter

    Permalink

    Transforms exceptions thrown during evaluation of its inner route using the given akka.http.javadsl.server.ExceptionHandler.

    Transforms exceptions thrown during evaluation of its inner route using the given akka.http.javadsl.server.ExceptionHandler.

    Definition Classes
    ExecutionDirectives
  136. def handleRejections(handler: RejectionHandler, inner: Supplier[Route]): RouteAdapter

    Permalink

    Transforms rejections produced by its inner route using the given akka.http.scaladsl.server.RejectionHandler.

    Transforms rejections produced by its inner route using the given akka.http.scaladsl.server.RejectionHandler.

    Definition Classes
    ExecutionDirectives
  137. def handleWebSocketMessages[T](handler: Flow[Message, Message, T]): Route

    Permalink

    Handles WebSocket requests with the given handler and rejects other requests with an ExpectedWebSocketRequestRejection.

    Handles WebSocket requests with the given handler and rejects other requests with an ExpectedWebSocketRequestRejection.

    Definition Classes
    WebSocketDirectives
  138. def handleWebSocketMessagesForOptionalProtocol[T](handler: Flow[Message, Message, T], subprotocol: Optional[String]): Route

    Permalink

    Handles WebSocket requests with the given handler and rejects other requests with an ExpectedWebSocketRequestRejection.

    Handles WebSocket requests with the given handler and rejects other requests with an ExpectedWebSocketRequestRejection.

    If the subprotocol parameter is None any WebSocket request is accepted. If the subprotocol parameter is Some(protocol) a WebSocket request is only accepted if the list of subprotocols supported by the client (as announced in the WebSocket request) contains protocol. If the client did not offer the protocol in question the request is rejected with an UnsupportedWebSocketSubprotocolRejection rejection.

    To support several subprotocols you may chain several handleWebSocketMessage Routes.

    Definition Classes
    WebSocketDirectives
  139. def handleWebSocketMessagesForProtocol[T](handler: Flow[Message, Message, T], subprotocol: String): Route

    Permalink

    Handles WebSocket requests with the given handler if the given subprotocol is offered in the request and rejects other requests with an ExpectedWebSocketRequestRejection or an UnsupportedWebSocketSubprotocolRejection.

    Handles WebSocket requests with the given handler if the given subprotocol is offered in the request and rejects other requests with an ExpectedWebSocketRequestRejection or an UnsupportedWebSocketSubprotocolRejection.

    Definition Classes
    WebSocketDirectives
  140. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  141. def head(inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    MethodDirectives
  142. def headerValue[T](f: Function[HttpHeader, Optional[T]], inner: Function[T, Route]): RouteAdapter

    Permalink

    Extracts an HTTP header value using the given function.

    Extracts an HTTP header value using the given function. If the function result is undefined for all headers the request is rejected with an empty rejection set. If the given function throws an exception the request is rejected with a akka.http.javadsl.server.MalformedHeaderRejection.

    Definition Classes
    HeaderDirectives
  143. def headerValueByName(headerName: String, inner: Function[String, Route]): RouteAdapter

    Permalink

    Extracts the value of the first HTTP request header with the given name.

    Extracts the value of the first HTTP request header with the given name. If no header with a matching name is found the request is rejected with a akka.http.javadsl.server.MissingHeaderRejection.

    Definition Classes
    HeaderDirectives
  144. def headerValueByType[T <: HttpHeader](t: Class[T], inner: Function[T, Route]): RouteAdapter

    Permalink

    Extracts the first HTTP request header of the given type.

    Extracts the first HTTP request header of the given type. If no header with a matching type is found the request is rejected with a akka.http.javadsl.server.MissingHeaderRejection.

    Definition Classes
    HeaderDirectives
  145. def headerValuePF[T](pf: PartialFunction[HttpHeader, T], inner: Function[T, Route]): RouteAdapter

    Permalink

    Extracts an HTTP header value using the given partial function.

    Extracts an HTTP header value using the given partial function. If the function is undefined for all headers the request is rejected with an empty rejection set.

    Definition Classes
    HeaderDirectives
  146. def host(regex: Pattern, inner: Function[String, Route]): Route

    Permalink

    Rejects all requests with a host name that doesn't have a prefix matching the given regular expression.

    Rejects all requests with a host name that doesn't have a prefix matching the given regular expression. For all matching requests the prefix string matching the regex is extracted and passed to the inner route. If the regex contains a capturing group only the string matched by this group is extracted. If the regex contains more than one capturing group an IllegalArgumentException is thrown.

    Definition Classes
    HostDirectives
  147. def host(predicate: Predicate[String], inner: Supplier[Route]): Route

    Permalink

    Rejects all requests for whose host name the given predicate function returns false.

    Rejects all requests for whose host name the given predicate function returns false.

    Definition Classes
    HostDirectives
  148. def host(hostName: String, inner: Supplier[Route]): Route

    Permalink

    Rejects all requests with a host name different from the given one.

    Rejects all requests with a host name different from the given one.

    Definition Classes
    HostDirectives
  149. def host(hostNames: Iterable[String], inner: Supplier[Route]): Route

    Permalink

    Rejects all requests with a host name different from the given ones.

    Rejects all requests with a host name different from the given ones.

    Definition Classes
    HostDirectives
  150. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  151. def listDirectoryContents(directoryRenderer: DirectoryRenderer, directories: String*): Route

    Permalink

    Completes GET requests with a unified listing of the contents of all given directories.

    Completes GET requests with a unified listing of the contents of all given directories. The actual rendering of the directory contents is performed by the in-scope Marshaller[DirectoryListing].

    Definition Classes
    FileAndResourceDirectives
    Annotations
    @varargs()
  152. def listDirectoryContents(directories: String*): Route

    Permalink

    Completes GET requests with a unified listing of the contents of all given directories.

    Completes GET requests with a unified listing of the contents of all given directories. The actual rendering of the directory contents is performed by the in-scope Marshaller[DirectoryListing].

    Definition Classes
    FileAndResourceDirectives
    Annotations
    @varargs()
  153. def logRequest(show: Function[HttpRequest, LogEntry], inner: Supplier[Route]): Route

    Permalink

    Produces a log entry for every incoming request.

    Produces a log entry for every incoming request.

    Definition Classes
    DebuggingDirectives
  154. def logRequest(marker: String, level: LogLevel, inner: Supplier[Route]): Route

    Permalink

    Produces a log entry for every incoming request.

    Produces a log entry for every incoming request.

    level

    One of the log levels defined in akka.event.Logging

    Definition Classes
    DebuggingDirectives
  155. def logRequest(marker: String, inner: Supplier[Route]): Route

    Permalink

    Produces a log entry for every incoming request.

    Produces a log entry for every incoming request.

    Definition Classes
    DebuggingDirectives
  156. def logRequestResult(showSuccess: BiFunction[HttpRequest, HttpResponse, LogEntry], showRejection: BiFunction[HttpRequest, List[Rejection], LogEntry], inner: Supplier[Route]): RouteAdapter

    Permalink

    Produces a log entry for every request/response combination.

    Produces a log entry for every request/response combination.

    showSuccess

    Function invoked when the route result was successful and yielded an HTTP response

    showRejection

    Function invoked when the route yielded a rejection

    Definition Classes
    DebuggingDirectives
  157. def logRequestResultOptional(showSuccess: BiFunction[HttpRequest, HttpResponse, Optional[LogEntry]], showRejection: BiFunction[HttpRequest, List[Rejection], Optional[LogEntry]], inner: Supplier[Route]): RouteAdapter

    Permalink

    Optionally produces a log entry for every request/response combination.

    Optionally produces a log entry for every request/response combination.

    showSuccess

    Function invoked when the route result was successful and yielded an HTTP response

    showRejection

    Function invoked when the route yielded a rejection

    Definition Classes
    DebuggingDirectives
    Annotations
    @CorrespondsTo()
  158. def logResult(showSuccess: Function[HttpResponse, LogEntry], showRejection: Function[List[Rejection], LogEntry], inner: Supplier[Route]): RouteAdapter

    Permalink

    Produces a log entry for every route result.

    Produces a log entry for every route result.

    showSuccess

    Function invoked when the route result was successful and yielded an HTTP response

    showRejection

    Function invoked when the route yielded a rejection

    Definition Classes
    DebuggingDirectives
  159. def logResult(marker: String, level: LogLevel, inner: Supplier[Route]): Route

    Permalink

    Produces a log entry for every route result.

    Produces a log entry for every route result.

    level

    One of the log levels defined in akka.event.Logging

    Definition Classes
    DebuggingDirectives
  160. def logResult(marker: String, inner: Supplier[Route]): Route

    Permalink

    Produces a log entry for every route result.

    Produces a log entry for every route result.

    Definition Classes
    DebuggingDirectives
  161. def mapInnerRoute(f: Function[Route, Route], inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    BasicDirectives
  162. def mapRejections(f: Function[List[Rejection], List[Rejection]], inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    BasicDirectives
  163. def mapRequest(f: Function[HttpRequest, HttpRequest], inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    BasicDirectives
  164. def mapRequestContext(f: Function[RequestContext, RequestContext], inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    BasicDirectives
  165. def mapResponse(f: Function[HttpResponse, HttpResponse], inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    BasicDirectives
  166. def mapResponseEntity(f: Function[ResponseEntity, ResponseEntity], inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    BasicDirectives
  167. def mapResponseHeaders(f: Function[List[HttpHeader], List[HttpHeader]], inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    BasicDirectives
  168. def mapRouteResult(f: Function[RouteResult, RouteResult], inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    BasicDirectives
  169. def mapRouteResultFuture(f: Function[CompletionStage[RouteResult], CompletionStage[RouteResult]], inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    BasicDirectives
  170. def mapRouteResultPF(f: PartialFunction[RouteResult, RouteResult], inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    BasicDirectives
  171. def mapRouteResultWith(f: Function[RouteResult, CompletionStage[RouteResult]], inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    BasicDirectives
  172. def mapRouteResultWithPF(f: PartialFunction[RouteResult, CompletionStage[RouteResult]], inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    BasicDirectives
  173. def mapSettings(f: Function[RoutingSettings, RoutingSettings], inner: Supplier[Route]): Route

    Permalink

    Runs the inner route with settings mapped by the given function.

    Runs the inner route with settings mapped by the given function.

    Definition Classes
    BasicDirectives
  174. def mapUnmatchedPath(f: Function[String, String], inner: Supplier[Route]): Route

    Permalink

    Transforms the unmatchedPath of the RequestContext using the given function.

    Transforms the unmatchedPath of the RequestContext using the given function.

    Definition Classes
    BasicDirectives
  175. def method(method: HttpMethod, inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    MethodDirectives
  176. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  177. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  178. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  179. def onComplete[T](cs: CompletionStage[T], inner: Function[Try[T], Route]): RouteAdapter

    Permalink

    "Unwraps" a CompletionStage<T> and runs the inner route after future completion with the future's value as an extraction of type Try<T>.

    "Unwraps" a CompletionStage<T> and runs the inner route after future completion with the future's value as an extraction of type Try<T>.

    Definition Classes
    FutureDirectives
  180. def onComplete[T](f: Supplier[CompletionStage[T]], inner: Function[Try[T], Route]): RouteAdapter

    Permalink

    "Unwraps" a CompletionStage<T> and runs the inner route after future completion with the future's value as an extraction of type Try<T>.

    "Unwraps" a CompletionStage<T> and runs the inner route after future completion with the future's value as an extraction of type Try<T>.

    Definition Classes
    FutureDirectives
  181. def onCompleteWithBreaker[T](breaker: CircuitBreaker, f: Supplier[CompletionStage[T]], inner: Function[Try[T], Route]): RouteAdapter

    Permalink

    "Unwraps" a CompletionStage[T] and runs the inner route after future completion with the future's value as an extraction of type T if the supplied CircuitBreaker is closed.

    "Unwraps" a CompletionStage[T] and runs the inner route after future completion with the future's value as an extraction of type T if the supplied CircuitBreaker is closed.

    If the supplied CircuitBreaker is open the request is rejected with a akka.http.javadsl.server.CircuitBreakerOpenRejection.

    Definition Classes
    FutureDirectives
  182. def onSuccess[T](f: Supplier[CompletionStage[T]], inner: Function[T, Route]): RouteAdapter

    Permalink

    "Unwraps" a CompletionStage<T> and runs the inner route after stage completion with the stage's value as an extraction of type T.

    "Unwraps" a CompletionStage<T> and runs the inner route after stage completion with the stage's value as an extraction of type T. If the stage fails its failure Throwable is bubbled up to the nearest ExceptionHandler.

    Definition Classes
    FutureDirectives
  183. def optionalCookie(name: String, inner: Function[Optional[HttpCookiePair], Route]): Route

    Permalink

    Extracts the HttpCookiePair with the given name as an Option[HttpCookiePair].

    Extracts the HttpCookiePair with the given name as an Option[HttpCookiePair]. If the cookie is not present a value of None is extracted.

    Definition Classes
    CookieDirectives
  184. def optionalHeaderValue[T](f: Function[HttpHeader, Optional[T]], inner: Function[Optional[T], Route]): RouteAdapter

    Permalink

    Extracts an optional HTTP header value using the given function.

    Extracts an optional HTTP header value using the given function. If the given function throws an exception the request is rejected with a akka.http.javadsl.server.MalformedHeaderRejection.

    Definition Classes
    HeaderDirectives
  185. def optionalHeaderValueByName(headerName: String, inner: Function[Optional[String], Route]): RouteAdapter

    Permalink

    Extracts the value of the optional HTTP request header with the given name.

    Extracts the value of the optional HTTP request header with the given name.

    Definition Classes
    HeaderDirectives
  186. def optionalHeaderValueByType[T <: HttpHeader](t: Class[T], inner: Function[Optional[T], Route]): RouteAdapter

    Permalink

    FIXME: WARNING: Custom headers don't work yet with this directive!

    FIXME: WARNING: Custom headers don't work yet with this directive!

    Extract the header value of the optional HTTP request header with the given type.

    Definition Classes
    HeaderDirectives
  187. def optionalHeaderValuePF[T](pf: PartialFunction[HttpHeader, T], inner: Function[Optional[T], Route]): RouteAdapter

    Permalink

    Extracts an optional HTTP header value using the given partial function.

    Extracts an optional HTTP header value using the given partial function. If the given function throws an exception the request is rejected with a akka.http.javadsl.server.MalformedHeaderRejection.

    Definition Classes
    HeaderDirectives
  188. def options(inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    MethodDirectives
  189. def overrideMethodWithParameter(paramName: String, inner: Supplier[Route]): Route

    Permalink

    Changes the HTTP method of the request to the value of the specified query string parameter.

    Changes the HTTP method of the request to the value of the specified query string parameter. If the query string parameter is not specified this directive has no effect. If the query string is specified as something that is not a HTTP method, then this directive completes the request with a 501 Not Implemented response.

    This directive is useful for:

    • Use in combination with JSONP (JSONP only supports GET)
    • Supporting older browsers that lack support for certain HTTP methods. E.g. IE8 does not support PATCH
    Definition Classes
    MethodDirectives
  190. def parameter[T](t: Unmarshaller[String, T], name: String, inner: Function[T, Route]): Route

    Permalink
    Definition Classes
    ParameterDirectives
  191. def parameter(name: String, inner: Function[String, Route]): Route

    Permalink
    Definition Classes
    ParameterDirectives
  192. def parameterList(inner: Function[List[Entry[String, String]], Route]): Route

    Permalink
    Definition Classes
    ParameterDirectives
    Annotations
    @CorrespondsTo()
  193. def parameterList[T](t: Unmarshaller[String, T], name: String, inner: Function[List[T], Route]): Route

    Permalink
    Definition Classes
    ParameterDirectives
    Annotations
    @CorrespondsTo()
  194. def parameterList(name: String, inner: Function[List[String], Route]): Route

    Permalink
    Definition Classes
    ParameterDirectives
    Annotations
    @CorrespondsTo()
  195. def parameterMap(inner: Function[Map[String, String], Route]): Route

    Permalink
    Definition Classes
    ParameterDirectives
  196. def parameterMultiMap(inner: Function[Map[String, List[String]], Route]): Route

    Permalink
    Definition Classes
    ParameterDirectives
  197. def parameterOptional[T](t: Unmarshaller[String, T], name: String, inner: Function[Optional[T], Route]): Route

    Permalink
    Definition Classes
    ParameterDirectives
    Annotations
    @CorrespondsTo()
  198. def parameterOptional(name: String, inner: Function[Optional[String], Route]): Route

    Permalink
    Definition Classes
    ParameterDirectives
    Annotations
    @CorrespondsTo()
  199. def parameterOrDefault[T](t: Unmarshaller[String, T], defaultValue: T, name: String, inner: Function[T, Route]): Route

    Permalink
    Definition Classes
    ParameterDirectives
    Annotations
    @CorrespondsTo()
  200. def pass(inner: Supplier[Route]): Route

    Permalink

    Always passes the request on to its inner route (i.e.

    Always passes the request on to its inner route (i.e. does nothing with the request or the response).

    Definition Classes
    BasicDirectives
  201. def patch(inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    MethodDirectives
  202. def path[T](t: Unmarshaller[String, T], inner: Function[T, Route]): Route

    Permalink

    Consumes a leading slash and extracts the next path segment, unmarshalling it and passing the result to the inner function, expecting the full path to have been consumed then.

    Consumes a leading slash and extracts the next path segment, unmarshalling it and passing the result to the inner function, expecting the full path to have been consumed then.

    Definition Classes
    PathDirectives
  203. def path[T1, T2](p: PathMatcher2[T1, T2], inner: BiFunction[T1, T2, Route]): Route

    Permalink
    Definition Classes
    PathDirectives
  204. def path[T](p: PathMatcher1[T], inner: Function[T, Route]): Route

    Permalink
    Definition Classes
    PathDirectives
  205. def path(p: PathMatcher0, inner: Supplier[Route]): Route

    Permalink

    Applies the given PathMatcher0 to the remaining unmatched path after consuming a leading slash.

    Applies the given PathMatcher0 to the remaining unmatched path after consuming a leading slash. The matcher has to match the remaining path completely. If matched the value extracted by the PathMatcher0 is extracted on the directive level.

    Definition Classes
    PathDirectives
  206. def path(inner: Function[String, Route]): Route

    Permalink
    Definition Classes
    PathDirectives
  207. def path(segment: String, inner: Supplier[Route]): Route

    Permalink

    Matches a prefix to the remaining unmatched path after consuming a leading slash.

    Matches a prefix to the remaining unmatched path after consuming a leading slash. The matcher has to match the remaining path completely. If matched the value matching the prefix is extracted on the directive level.

    Definition Classes
    PathDirectives
  208. def pathEnd(inner: Supplier[Route]): Route

    Permalink

    Rejects the request if the unmatchedPath of the akka.http.javadsl.server.RequestContext is non-empty, or said differently: only passes on the request to its inner route if the request path has been matched completely.

    Rejects the request if the unmatchedPath of the akka.http.javadsl.server.RequestContext is non-empty, or said differently: only passes on the request to its inner route if the request path has been matched completely.

    Definition Classes
    PathDirectives
  209. def pathEndOrSingleSlash(inner: Supplier[Route]): Route

    Permalink

    Only passes on the request to its inner route if the request path has been matched completely or only consists of exactly one remaining slash.

    Only passes on the request to its inner route if the request path has been matched completely or only consists of exactly one remaining slash.

    Note that trailing slash and non-trailing slash URLs are not the same, although they often serve the same content. It is recommended to serve only one URL version and make the other redirect to it using #redirectToTrailingSlashIfMissing or #redirectToNoTrailingSlashIfPresent directive.

    For example:

    def route = {
      // redirect '/users/' to '/users', '/users/:userId/' to '/users/:userId'
      redirectToNoTrailingSlashIfPresent(Found) {
        pathPrefix("users") {
          pathEnd {
            // user list ...
          } ~
          path(UUID) { userId =>
            // user profile ...
          }
        }
      }
    }

    For further information, refer to: http://googlewebmastercentral.blogspot.de/2010/04/to-slash-or-not-to-slash.html

    Definition Classes
    PathDirectives
  210. def pathPrefix[T](t: Unmarshaller[String, T], inner: Function[T, Route]): Route

    Permalink

    Consumes a leading slash and extracts the next path segment, unmarshalling it and passing the result to the inner function.

    Consumes a leading slash and extracts the next path segment, unmarshalling it and passing the result to the inner function.

    Definition Classes
    PathDirectives
  211. def pathPrefix[T1, T2](p: PathMatcher2[T1, T2], inner: BiFunction[T1, T2, Route]): Route

    Permalink
    Definition Classes
    PathDirectives
  212. def pathPrefix[T](p: PathMatcher1[T], inner: Function[T, Route]): Route

    Permalink
    Definition Classes
    PathDirectives
  213. def pathPrefix(p: PathMatcher0, inner: Supplier[Route]): Route

    Permalink

    Applies the given PathMatcher0 to the remaining unmatched path after consuming a leading slash.

    Applies the given PathMatcher0 to the remaining unmatched path after consuming a leading slash. The matcher has to match a prefix of the remaining path. If matched the value extracted by the PathMatcher is extracted on the directive level.

    Definition Classes
    PathDirectives
  214. def pathPrefix(inner: Function[String, Route]): Route

    Permalink
    Definition Classes
    PathDirectives
  215. def pathPrefix(segment: String, inner: Supplier[Route]): Route

    Permalink

    Matches a prefix to the remaining unmatched path after consuming a leading slash.

    Matches a prefix to the remaining unmatched path after consuming a leading slash. The matcher has to match a prefix of the remaining path. If matched the value matching the prefix is extracted on the directive level.

    Definition Classes
    PathDirectives
  216. def pathPrefixTest[T1, T2](pm: PathMatcher2[T1, T2], inner: BiFunction[T1, T2, Route]): Route

    Permalink
    Definition Classes
    PathDirectives
  217. def pathPrefixTest[T1](pm: PathMatcher1[T1], inner: Function[T1, Route]): Route

    Permalink
    Definition Classes
    PathDirectives
  218. def pathPrefixTest(pm: PathMatcher0, inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    PathDirectives
  219. def pathPrefixTest(segment: String, inner: Supplier[Route]): Route

    Permalink

    Checks whether the unmatchedPath of the akka.http.javadsl.server.RequestContext has a prefix matched by the given PathMatcher.

    Checks whether the unmatchedPath of the akka.http.javadsl.server.RequestContext has a prefix matched by the given PathMatcher. In analogy to the pathPrefix directive a leading slash is implied.

    Definition Classes
    PathDirectives
  220. def pathSingleSlash(inner: Supplier[Route]): Route

    Permalink

    Only passes on the request to its inner route if the request path consists of exactly one remaining slash.

    Only passes on the request to its inner route if the request path consists of exactly one remaining slash.

    Definition Classes
    PathDirectives
  221. def pathSuffix[T1, T2](pm: PathMatcher2[T1, T2], inner: BiFunction[T1, T2, Route]): Route

    Permalink
    Definition Classes
    PathDirectives
  222. def pathSuffix[T1](pm: PathMatcher1[T1], inner: Function[T1, Route]): Route

    Permalink
    Definition Classes
    PathDirectives
  223. def pathSuffix(pm: PathMatcher0, inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    PathDirectives
  224. def pathSuffix(segment: String, inner: Supplier[Route]): Route

    Permalink

    Applies the given akka.http.scaladsl.server.PathMatcher to a suffix of the remaining unmatchedPath of the akka.http.javadsl.server.RequestContext.

    Applies the given akka.http.scaladsl.server.PathMatcher to a suffix of the remaining unmatchedPath of the akka.http.javadsl.server.RequestContext. If matched the value extracted by the akka.http.javadsl.server.PathMatcher0 is extracted and the matched parts of the path are consumed. Note that, for efficiency reasons, the given akka.http.javadsl.server.PathMatcher0 must match the desired suffix in reversed-segment order, i.e. pathSuffix("baz" / "bar") would match /foo/bar/baz!

    Definition Classes
    PathDirectives
  225. def pathSuffixTest[T1, T2](pm: PathMatcher2[T1, T2], inner: BiFunction[T1, T2, Route]): Route

    Permalink
    Definition Classes
    PathDirectives
  226. def pathSuffixTest[T1](pm: PathMatcher1[T1], inner: Function[T1, Route]): Route

    Permalink
    Definition Classes
    PathDirectives
  227. def pathSuffixTest(pm: PathMatcher0, inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    PathDirectives
  228. def pathSuffixTest(segment: String, inner: Supplier[Route]): Route

    Permalink

    Checks whether the unmatchedPath of the akka.http.javadsl.server.RequestContext has a suffix matched by the given PathMatcher.

    Checks whether the unmatchedPath of the akka.http.javadsl.server.RequestContext has a suffix matched by the given PathMatcher. However, as opposed to the pathSuffix directive the matched path is not actually "consumed". Note that, for efficiency reasons, the given PathMatcher must match the desired suffix in reversed-segment order, i.e. pathSuffixTest("baz" / "bar") would match /foo/bar/baz!

    Definition Classes
    PathDirectives
  229. def post(inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    MethodDirectives
  230. def provide[T](t: T, inner: Function[T, Route]): Route

    Permalink

    Injects the given value into a directive.

    Injects the given value into a directive.

    Definition Classes
    BasicDirectives
  231. def put(inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    MethodDirectives
  232. def rawPathPrefix[T1, T2](pm: PathMatcher2[T1, T2], inner: BiFunction[T1, T2, Route]): Route

    Permalink
    Definition Classes
    PathDirectives
  233. def rawPathPrefix[T1](pm: PathMatcher1[T1], inner: Function[T1, Route]): Route

    Permalink
    Definition Classes
    PathDirectives
  234. def rawPathPrefix(pm: PathMatcher0, inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    PathDirectives
  235. def rawPathPrefix(segment: String, inner: Supplier[Route]): Route

    Permalink

    Applies the given matcher directly to a prefix of the unmatched path of the akka.http.javadsl.server.RequestContext (i.e.

    Applies the given matcher directly to a prefix of the unmatched path of the akka.http.javadsl.server.RequestContext (i.e. without implicitly consuming a leading slash). The matcher has to match a prefix of the remaining path. If matched the value extracted by the PathMatcher is extracted on the directive level.

    Definition Classes
    PathDirectives
  236. def rawPathPrefixTest[T1, T2](pm: PathMatcher2[T1, T2], inner: BiFunction[T1, T2, Route]): Route

    Permalink
    Definition Classes
    PathDirectives
  237. def rawPathPrefixTest[T1](pm: PathMatcher1[T1], inner: Function[T1, Route]): Route

    Permalink
    Definition Classes
    PathDirectives
  238. def rawPathPrefixTest(pm: PathMatcher0, inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    PathDirectives
  239. def rawPathPrefixTest(segment: String, inner: Supplier[Route]): Route

    Permalink

    Checks whether the unmatchedPath of the akka.http.javadsl.server.RequestContext has a prefix matched by the given PathMatcher.

    Checks whether the unmatchedPath of the akka.http.javadsl.server.RequestContext has a prefix matched by the given PathMatcher. However, as opposed to the pathPrefix directive the matched path is not actually "consumed".

    Definition Classes
    PathDirectives
  240. def recoverRejections(f: Function[Iterable[Rejection], RouteResult], inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    BasicDirectives
  241. def recoverRejectionsWith(f: Function[Iterable[Rejection], CompletionStage[RouteResult]], inner: Supplier[Route]): Route

    Permalink
    Definition Classes
    BasicDirectives
  242. def redirect(uri: Uri, redirectionType: StatusCode): Route

    Permalink

    Completes the request with redirection response of the given type to the given URI.

    Completes the request with redirection response of the given type to the given URI.

    redirectionType

    A status code from StatusCodes, which must be a redirection type.

    Definition Classes
    RouteDirectives
  243. def redirectToNoTrailingSlashIfPresent(redirectionType: StatusCode, inner: Supplier[Route]): Route

    Permalink

    If the request path ends with a slash, redirect to the same uri without trailing slash in the path.

    If the request path ends with a slash, redirect to the same uri without trailing slash in the path.

    Caveat: #pathSingleSlash directive will not match inside of this directive.

    redirectionType

    A status code from StatusCodes, which must be a redirection type.

    Definition Classes
    PathDirectives
  244. def redirectToTrailingSlashIfMissing(redirectionType: StatusCode, inner: Supplier[Route]): Route

    Permalink

    If the request path doesn't end with a slash, redirect to the same uri with trailing slash in the path.

    If the request path doesn't end with a slash, redirect to the same uri with trailing slash in the path.

    Caveat: #path without trailing slash and #pathEnd directives will not match inside of this directive.

    redirectionType

    A status code from StatusCodes, which must be a redirection type.

    Definition Classes
    PathDirectives
  245. def reject(): Route

    Permalink

    Rejects the request with an empty rejection (usualy used for "no directive matched").

    Rejects the request with an empty rejection (usualy used for "no directive matched").

    Definition Classes
    RouteDirectives
  246. def reject(rejection: Rejection, rejections: Rejection*): Route

    Permalink

    Rejects the request with the given rejections, or with an empty set of rejections if no rejections are given.

    Rejects the request with the given rejections, or with an empty set of rejections if no rejections are given.

    Definition Classes
    RouteDirectives
    Annotations
    @varargs()
  247. def rejectEmptyResponse(inner: Supplier[Route]): Route

    Permalink

    Converts responses with an empty entity into (empty) rejections.

    Converts responses with an empty entity into (empty) rejections. This way you can, for example, have the marshalling of a None option be treated as if the request could not be matched.

    Definition Classes
    MiscDirectives
  248. def request[T](unmarshaller: Unmarshaller[_ >: HttpRequest, T], inner: Function[T, Route]): Route

    Permalink

    Unmarshalls the request using the given unmarshaller, and passes the result to [inner].

    Unmarshalls the request using the given unmarshaller, and passes the result to [inner]. If there is a problem with unmarshalling the request is rejected with the akka.http.javadsl.server.Rejection produced by the unmarshaller.

    Definition Classes
    MarshallingDirectives
  249. def requestEncodedWith(encoding: HttpEncoding, inner: Supplier[Route]): Route

    Permalink

    Rejects the request with an UnsupportedRequestEncodingRejection if its encoding doesn't match the given one.

    Rejects the request with an UnsupportedRequestEncodingRejection if its encoding doesn't match the given one.

    Definition Classes
    CodingDirectives
  250. def requestEntityEmpty(inner: Supplier[Route]): Route

    Permalink

    Rejects if the request entity is non-empty.

    Rejects if the request entity is non-empty.

    Definition Classes
    MiscDirectives
  251. def requestEntityPresent(inner: Supplier[Route]): Route

    Permalink

    Rejects with a RequestEntityExpectedRejection if the request entity is empty.

    Rejects with a RequestEntityExpectedRejection if the request entity is empty. Non-empty requests are passed on unchanged to the inner route.

    Definition Classes
    MiscDirectives
  252. def respondWithDefaultHeader(responseHeader: HttpHeader, inner: Supplier[Route]): Route

    Permalink

    Adds the given response header to all HTTP responses of its inner Route, if the response from the inner Route doesn't already contain a header with the same name.

    Adds the given response header to all HTTP responses of its inner Route, if the response from the inner Route doesn't already contain a header with the same name.

    Definition Classes
    RespondWithDirectives
  253. def respondWithDefaultHeaders(responseHeaders: Iterable[HttpHeader], inner: Supplier[Route]): Route

    Permalink

    Adds the given response headers to all HTTP responses of its inner Route, if a header already exists it is not added again.

    Adds the given response headers to all HTTP responses of its inner Route, if a header already exists it is not added again.

    Definition Classes
    RespondWithDirectives
  254. def respondWithHeader(responseHeader: HttpHeader, inner: Supplier[Route]): Route

    Permalink

    Unconditionally adds the given response header to all HTTP responses of its inner Route.

    Unconditionally adds the given response header to all HTTP responses of its inner Route.

    Definition Classes
    RespondWithDirectives
  255. def respondWithHeaders(responseHeaders: Iterable[HttpHeader], inner: Supplier[Route]): Route

    Permalink

    Unconditionally adds the given response headers to all HTTP responses of its inner Route.

    Unconditionally adds the given response headers to all HTTP responses of its inner Route.

    Definition Classes
    RespondWithDirectives
  256. def responseEncodingAccepted(encoding: HttpEncoding, inner: Supplier[Route]): Route

    Permalink

    Rejects the request with an UnacceptedResponseEncodingRejection if the given response encoding is not accepted by the client.

    Rejects the request with an UnacceptedResponseEncodingRejection if the given response encoding is not accepted by the client.

    Definition Classes
    CodingDirectives
  257. def route(alternatives: Route*): Route

    Permalink

    Java-specific call added so you can chain together multiple alternate routes using comma, rather than having to explicitly call route1.orElse(route2).orElse(route3).

    Java-specific call added so you can chain together multiple alternate routes using comma, rather than having to explicitly call route1.orElse(route2).orElse(route3).

    Definition Classes
    DirectivesRouteDirectives
    Annotations
    @varargs()
  258. def scheme(name: String, inner: Supplier[Route]): Route

    Permalink

    Rejects all requests whose Uri scheme does not match the given one.

    Rejects all requests whose Uri scheme does not match the given one.

    Definition Classes
    SchemeDirectives
  259. def selectPreferredLanguage(languages: Iterable[Language], inner: Function[Language, Route]): Route

    Permalink

    Inspects the request's Accept-Language header and determines, which of the given language alternatives is preferred by the client.

    Inspects the request's Accept-Language header and determines, which of the given language alternatives is preferred by the client. (See http://tools.ietf.org/html/rfc7231#section-5.3.5 for more details on the negotiation logic.) If there are several best language alternatives that the client has equal preference for (even if this preference is zero!) the order of the arguments is used as a tie breaker (First one wins).

    If [languages] is empty, the route is rejected.

    Definition Classes
    MiscDirectives
  260. def setCookie(cookies: Iterable[HttpCookie], inner: Supplier[Route]): Route

    Permalink

    Adds a Set-Cookie response header with the given cookies.

    Adds a Set-Cookie response header with the given cookies.

    Definition Classes
    CookieDirectives
  261. def setCookie(cookie: HttpCookie, inner: Supplier[Route]): Route

    Permalink

    Adds a Set-Cookie response header with the given cookie.

    Adds a Set-Cookie response header with the given cookie.

    Definition Classes
    CookieDirectives
  262. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  263. def toStrictEntity(timeout: FiniteDuration, inner: Supplier[Route]): Route

    Permalink

    WARNING: This will read the entire request entity into memory regardless of size and effectively disable streaming.

    WARNING: This will read the entire request entity into memory regardless of size and effectively disable streaming.

    Extracts the akka.http.javadsl.server.RequestContext itself with the strict HTTP entity, or fails the route if unable to drain the entire request body within the timeout.

    timeout

    The directive is failed if the stream isn't completed after the given timeout.

    Definition Classes
    BasicDirectives
  264. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  265. def uploadedFile(fieldName: String, inner: BiFunction[FileInfo, File, Route]): Route

    Permalink

    Streams the bytes of the file submitted using multipart with the given file name into a temporary file on disk.

    Streams the bytes of the file submitted using multipart with the given file name into a temporary file on disk. If there is an error writing to disk the request will be failed with the thrown exception, if there is no such field the request will be rejected, if there are multiple file parts with the same name, the first one will be used and the subsequent ones ignored.

    Definition Classes
    FileUploadDirectives
  266. def validate(check: BooleanSupplier, errorMsg: String, inner: Supplier[Route]): Route

    Permalink

    Checks the given condition before running its inner route.

    Checks the given condition before running its inner route. If the condition fails the route is rejected with a ValidationRejection.

    Definition Classes
    MiscDirectives
  267. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  268. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  269. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  270. def withExecutionContext(ec: ExecutionContextExecutor, inner: Supplier[Route]): Route

    Permalink

    Runs its inner route with the given alternative scala.concurrent.ExecutionContextExecutor.

    Runs its inner route with the given alternative scala.concurrent.ExecutionContextExecutor.

    Definition Classes
    BasicDirectives
  271. def withLog(log: LoggingAdapter, inner: Supplier[Route]): Route

    Permalink

    Runs its inner route with the given alternative LoggingAdapter.

    Runs its inner route with the given alternative LoggingAdapter.

    Definition Classes
    BasicDirectives
  272. def withMaterializer(mat: Materializer, inner: Supplier[Route]): Route

    Permalink

    Runs its inner route with the given alternative akka.stream.Materializer.

    Runs its inner route with the given alternative akka.stream.Materializer.

    Definition Classes
    BasicDirectives
  273. def withPrecompressedMediaTypeSupport(inner: Supplier[Route]): Route

    Permalink

    Inspects the response entity and adds a Content-Encoding: gzip response header if the entities media-type is precompressed with gzip and no Content-Encoding header is present yet.

    Inspects the response entity and adds a Content-Encoding: gzip response header if the entities media-type is precompressed with gzip and no Content-Encoding header is present yet.

    Definition Classes
    CodingDirectives
  274. def withRangeSupport(inner: Supplier[Route]): Route

    Permalink

    Answers GET requests with an Accept-Ranges: bytes header and converts HttpResponses coming back from its inner route into partial responses if the initial request contained a valid Range request header.

    Answers GET requests with an Accept-Ranges: bytes header and converts HttpResponses coming back from its inner route into partial responses if the initial request contained a valid Range request header. The requested byte-ranges may be coalesced. This directive is transparent to non-GET requests Rejects requests with unsatisfiable ranges UnsatisfiableRangeRejection. Rejects requests with too many expected ranges.

    Note: if you want to combine this directive with conditional(...) you need to put it on the *inside* of the conditional(...) directive, i.e. conditional(...) must be on a higher level in your route structure in order to function correctly.

    For more information, see: https://tools.ietf.org/html/rfc7233

    Definition Classes
    RangeDirectives
  275. def withRequestTimeout(timeout: Duration, timeoutHandler: Function[HttpRequest, HttpResponse], inner: Supplier[Route]): RouteAdapter

    Permalink

    Tries to set a new request timeout and handler (if provided) at the same time.

    Tries to set a new request timeout and handler (if provided) at the same time.

    Due to the inherent raciness it is not guaranteed that the update will be applied before the previously set timeout has expired!

    Definition Classes
    TimeoutDirectives
  276. def withRequestTimeout(timeout: Duration, inner: Supplier[Route]): RouteAdapter

    Permalink

    Tries to set a new request timeout and handler (if provided) at the same time.

    Tries to set a new request timeout and handler (if provided) at the same time.

    Due to the inherent raciness it is not guaranteed that the update will be applied before the previously set timeout has expired!

    Definition Classes
    TimeoutDirectives
  277. def withRequestTimeoutResponse(timeoutHandler: Function[HttpRequest, HttpResponse], inner: Supplier[Route]): RouteAdapter

    Permalink

    Tries to set a new request timeout handler, which produces the timeout response for a given request.

    Tries to set a new request timeout handler, which produces the timeout response for a given request. Note that the handler must produce the response synchronously and shouldn't block!

    Due to the inherent raciness it is not guaranteed that the update will be applied before the previously set timeout has expired!

    Definition Classes
    TimeoutDirectives
  278. def withSettings(s: RoutingSettings, inner: Supplier[Route]): Route

    Permalink

    Runs its inner route with the given alternative RoutingSettings.

    Runs its inner route with the given alternative RoutingSettings.

    Definition Classes
    BasicDirectives
  279. def withSizeLimit(maxBytes: Long, inner: Supplier[Route]): Route

    Permalink

    Fails the stream with akka.http.scaladsl.model.EntityStreamSizeException if its request entity size exceeds given limit.

    Fails the stream with akka.http.scaladsl.model.EntityStreamSizeException if its request entity size exceeds given limit. Limit given as parameter overrides limit configured with akka.http.parsing.max-content-length.

    Beware that request entity size check is executed when entity is consumed.

    Definition Classes
    MiscDirectives
  280. def withoutRequestTimeout(inner: Supplier[Route]): RouteAdapter

    Permalink
    Definition Classes
    TimeoutDirectives
  281. def withoutSizeLimit(inner: Supplier[Route]): Route

    Permalink

    Disables the size limit (configured by akka.http.parsing.max-content-length by default) checking on the incoming akka.http.javadsl.model.HttpRequest entity.

    Disables the size limit (configured by akka.http.parsing.max-content-length by default) checking on the incoming akka.http.javadsl.model.HttpRequest entity. Can be useful when handling arbitrarily large data uploads in specific parts of your routes.

    Definition Classes
    MiscDirectives

Inherited from AllDirectives

Inherited from TimeoutDirectives

Inherited from WebSocketDirectives

Inherited from SecurityDirectives

Inherited from SchemeDirectives

Inherited from RouteDirectives

Inherited from RespondWithDirectives

Inherited from RangeDirectives

Inherited from PathDirectives

Inherited from ParameterDirectives

Inherited from MiscDirectives

Inherited from MethodDirectives

Inherited from MarshallingDirectives

Inherited from HostDirectives

Inherited from HeaderDirectives

Inherited from FutureDirectives

Inherited from FormFieldDirectives

Inherited from FileUploadDirectives

Inherited from FileAndResourceDirectives

Inherited from ExecutionDirectives

Inherited from DebuggingDirectives

Inherited from CookieDirectives

Inherited from CodingDirectives

Inherited from CacheConditionDirectives

Inherited from BasicDirectives

Inherited from AnyRef

Inherited from Any

future

header

Ungrouped