trait Urls extends algebra.Urls with StatusCodes
algebra.Urls interpreter that decodes and encodes URLs.
- Self Type
- EndpointsWithCustomErrors
- Source
- Urls.scala
- Grouped
- Alphabetic
- By Inheritance
- Urls
- StatusCodes
- StatusCodes
- Urls
- PartialInvariantFunctorSyntax
- InvariantFunctorSyntax
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Type Members
- implicit class InvariantFunctorSyntax[A, F[_]] extends AnyRef
Extension methods for values of type
F[A]
for which there is an implicitInvariantFunctor[F]
instance.Extension methods for values of type
F[A]
for which there is an implicitInvariantFunctor[F]
instance.- Definition Classes
- InvariantFunctorSyntax
- implicit class PartialInvariantFunctorSyntax[A, F[_]] extends AnyRef
- Definition Classes
- PartialInvariantFunctorSyntax
- implicit class PathOps[A] extends AnyRef
Convenient methods for Paths.
- implicit class QueryStringSyntax[A] extends AnyRef
Extension methods on QueryString.
Extension methods on QueryString.
- Definition Classes
- Urls
- trait Path[A] extends EndpointsWithCustomErrors.Url[A]
- trait QueryString[T] extends AnyRef
- trait QueryStringParam[T] extends AnyRef
Given a parameter name and a query string content, returns a decoded parameter value of type
T
, orInvalid
if decoding failed - trait Segment[A] extends AnyRef
- type StatusCode = org.apache.pekko.http.scaladsl.model.StatusCode
HTTP Status Code
HTTP Status Code
- Definition Classes
- StatusCodes → StatusCodes
- trait Url[A] extends AnyRef
- type WithDefault[A] = A
This type is necessary to express different perspectives of servers and clients on optional query string parameters with default value:
This type is necessary to express different perspectives of servers and clients on optional query string parameters with default value:
- Client interpreters should define it as
Option[A]
and omit query string parameters with default value that are empty - Server interpreters should define it as
A
and accept incoming requests whose query string parameters with default value are missing, while providing the defined default value - Documentation interpreters should mark the parameter as optional and document the provided default value
- Client interpreters should define it as
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
- def ->[B](y: B): (Urls, B)
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def Accepted: Success
- Definition Classes
- StatusCodes → StatusCodes
- def AlreadyReported: Success
- Definition Classes
- StatusCodes → StatusCodes
- def BadRequest: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- Note
You should use the
badRequest
constructor provided by the endpoints4s.algebra.Responses trait to ensure that errors produced by endpoints4s are consistently handled by interpreters.
- def Conflict: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def Created: Success
- Definition Classes
- StatusCodes → StatusCodes
- def ExpectationFailed: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def FailedDependency: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def Forbidden: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def Gone: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def IMUsed: Success
- Definition Classes
- StatusCodes → StatusCodes
- def InternalServerError: ServerError
- Definition Classes
- StatusCodes → StatusCodes
- Note
You should use the
internalServerError
constructor provided by the endpoints4s.algebra.Responses trait to ensure that errors produced by endpoints4s are consistently handled by interpreters.
- def LengthRequired: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def Locked: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def MethodNotAllowed: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def MisdirectedRequest: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def MultiStatus: Success
- Definition Classes
- StatusCodes → StatusCodes
- def NoContent: Success
- Definition Classes
- StatusCodes → StatusCodes
- def NonAuthoritativeInformation: Success
- Definition Classes
- StatusCodes → StatusCodes
- def NotAcceptable: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def NotFound: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def NotImplemented: ServerError
- Definition Classes
- StatusCodes → StatusCodes
- def NotModified: Redirection
- Definition Classes
- StatusCodes → StatusCodes
- def OK: Success
- Definition Classes
- StatusCodes → StatusCodes
- def PartialContent: Success
- Definition Classes
- StatusCodes → StatusCodes
- def PayloadTooLarge: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def PaymentRequired: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def PermanentRedirect: Redirection
- Definition Classes
- StatusCodes → StatusCodes
- def PreconditionFailed: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def PreconditionRequired: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def ProxyAuthenticationRequired: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def RangeNotSatisfiable: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def RequestHeaderFieldsTooLarge: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def RequestTimeout: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def ResetContent: Success
- Definition Classes
- StatusCodes → StatusCodes
- def TemporaryRedirect: Redirection
- Definition Classes
- StatusCodes → StatusCodes
- def TooEarly: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def TooManyRequests: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def Unauthorized: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def UnavailableForLegalReasons: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def UnprocessableEntity: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def UnsupportedMediaType: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def UpgradeRequired: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- def UriTooLong: ClientError
- Definition Classes
- StatusCodes → StatusCodes
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit def booleanQueryString: EndpointsWithCustomErrors.QueryStringParam[Boolean]
Query string parameter containing a
Boolean
valueQuery string parameter containing a
Boolean
value- Definition Classes
- Urls
- def chainPaths[A, B](first: EndpointsWithCustomErrors.Path[A], second: EndpointsWithCustomErrors.Path[B])(implicit tupler: Tupler[A, B]): EndpointsWithCustomErrors.Path[Out]
Chains the two paths
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- def combineQueryStrings[A, B](first: EndpointsWithCustomErrors.QueryString[A], second: EndpointsWithCustomErrors.QueryString[B])(implicit tupler: Tupler[A, B]): EndpointsWithCustomErrors.QueryString[Out]
Concatenates two
QueryString
s - def convToDirective1(directive: Directive0): Directive1[Unit]
- Attributes
- protected
- implicit def doubleQueryString: EndpointsWithCustomErrors.QueryStringParam[Double]
Codec for query string parameters of type
Double
Codec for query string parameters of type
Double
- Definition Classes
- Urls
- implicit def doubleSegment: EndpointsWithCustomErrors.Segment[Double]
Path segment codec for type
Double
Path segment codec for type
Double
- Definition Classes
- Urls
- def ensuring(cond: (Urls) => Boolean, msg: => Any): Urls
- def ensuring(cond: (Urls) => Boolean): Urls
- def ensuring(cond: Boolean, msg: => Any): Urls
- def ensuring(cond: Boolean): Urls
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def handleClientErrors(invalid: Invalid): StandardRoute
This method is called by endpoints4s when decoding a request failed.
This method is called by endpoints4s when decoding a request failed.
The provided implementation calls
clientErrorsResponse
to complete with a response containing the errors.This method can be overridden to customize the error reporting logic.
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- implicit def intQueryString: EndpointsWithCustomErrors.QueryStringParam[Int]
Ability to define
Int
query string parametersAbility to define
Int
query string parameters- Definition Classes
- Urls
- implicit def intSegment: EndpointsWithCustomErrors.Segment[Int]
Path segment codec for type
Int
Path segment codec for type
Int
- Definition Classes
- Urls
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def joinDirectives[T1, T2](dir1: Directive1[T1], dir2: Directive1[T2])(implicit tupler: Tupler[T1, T2]): Directive1[Out]
Simpler alternative to
Directive.&()
methodSimpler alternative to
Directive.&()
method- Attributes
- protected
- implicit def longQueryString: EndpointsWithCustomErrors.QueryStringParam[Long]
Query string parameter containing a
Long
valueQuery string parameter containing a
Long
value- Definition Classes
- Urls
- implicit def longSegment: EndpointsWithCustomErrors.Segment[Long]
Path segment codec for type
Long
Path segment codec for type
Long
- Definition Classes
- Urls
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- def optQsWithDefault[A](name: String, default: A, docs: Documentation = None)(implicit value: EndpointsWithCustomErrors.QueryStringParam[A]): EndpointsWithCustomErrors.QueryString[EndpointsWithCustomErrors.WithDefault[A]]
Builds a
QueryString
with one optional parameter, which has a default value. - implicit def optionalQueryStringParam[A](implicit param: EndpointsWithCustomErrors.QueryStringParam[A]): EndpointsWithCustomErrors.QueryStringParam[Option[A]]
Make a query string parameter optional:
Make a query string parameter optional:
path / "articles" /? qs[Option[Int]]("page")
- Client interpreters must omit optional query string parameters that are empty.
- Server interpreters must accept incoming requests whose optional query string parameters are missing, and they must report a failure for incoming requests whose optional query string parameters are present, but malformed,
- Documentation interpreters should mark the parameter as optional.
- val path: EndpointsWithCustomErrors.Path[Unit]
An empty path.
An empty path.
Useful to begin a path definition:
path / "foo" / segment[Int] /? qs[String]("bar")
- Definition Classes
- Urls
- implicit lazy val pathPartialInvariantFunctor: PartialInvariantFunctor[EndpointsWithCustomErrors.Path]
Provides
xmap
andxmapPartial
operations. - def qs[A](name: String, docs: Documentation)(implicit param: EndpointsWithCustomErrors.QueryStringParam[A]): EndpointsWithCustomErrors.QueryString[A]
Builds a
QueryString
with one parameter. - implicit lazy val queryStringParamPartialInvariantFunctor: PartialInvariantFunctor[EndpointsWithCustomErrors.QueryStringParam]
Provides
xmap
andxmapPartial
operations. - implicit lazy val queryStringPartialInvariantFunctor: PartialInvariantFunctor[EndpointsWithCustomErrors.QueryString]
Provides
xmap
andxmapPartial
operations. - def remainingSegments(name: String, docs: Documentation): EndpointsWithCustomErrors.Path[String]
The remaining segments of the path.
- implicit def repeatedQueryStringParam[A, CC[X] <: Iterable[X]](implicit param: EndpointsWithCustomErrors.QueryStringParam[A], factory: Factory[A, CC[A]]): EndpointsWithCustomErrors.QueryStringParam[CC[A]]
Support query string parameters with multiple values:
Support query string parameters with multiple values:
path / "articles" /? qs[List[Long]]("id")
- Server interpreters must accept incoming requests where such parameters are missing (in such a case, its value is an empty collection), and report a failure if at least one value is malformed.
- def segment[A](name: String, docs: Documentation)(implicit s: EndpointsWithCustomErrors.Segment[A]): EndpointsWithCustomErrors.Path[A]
A path segment carrying an
A
information - implicit lazy val segmentPartialInvariantFunctor: PartialInvariantFunctor[EndpointsWithCustomErrors.Segment]
Provides
xmap
andxmapPartial
operations. - def staticPathSegment(segment: String): EndpointsWithCustomErrors.Path[Unit]
A path segment whose value is the given
segment
- implicit lazy val stringQueryString: EndpointsWithCustomErrors.QueryStringParam[String]
Ability to define
String
query string parameters - implicit def stringSegment: EndpointsWithCustomErrors.Segment[String]
Path segment codec for type
String
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- implicit lazy val urlPartialInvariantFunctor: PartialInvariantFunctor[EndpointsWithCustomErrors.Url]
Provides
xmap
andxmapPartial
operations - def urlWithQueryString[A, B](path: EndpointsWithCustomErrors.Path[A], qs: EndpointsWithCustomErrors.QueryString[B])(implicit tupler: Tupler[A, B]): EndpointsWithCustomErrors.Url[Out]
Builds an URL from the given path and query string
- implicit def uuidQueryString: EndpointsWithCustomErrors.QueryStringParam[UUID]
Ability to define
UUID
query string parametersAbility to define
UUID
query string parameters- Definition Classes
- Urls
- implicit def uuidSegment: EndpointsWithCustomErrors.Segment[UUID]
Path segment codec for type
UUID
Path segment codec for type
UUID
- Definition Classes
- Urls
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)
- def formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from Urls toStringFormat[Urls] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.12.16) Use
formatString.format(value)
instead ofvalue.formatted(formatString)
, or use thef""
string interpolator. In Java 15 and later,formatted
resolves to the new method in String which has reversed parameters.
- def →[B](y: B): (Urls, B)
- Implicit
- This member is added by an implicit conversion from Urls toArrowAssoc[Urls] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use
->
instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.
Inherited from StatusCodes
Inherited from algebra.StatusCodes
Inherited from algebra.Urls
Inherited from endpoints4s.PartialInvariantFunctorSyntax
Inherited from endpoints4s.InvariantFunctorSyntax
Inherited from AnyRef
Inherited from Any
Types
Types introduced by the algebra
Operations
Operations creating and transforming values