Object

io.fintrospect.formats.Xml

Filters

Related Doc: package Xml

Permalink

object Filters extends AutoFilters[Elem]

Auto-marshalling filters which can be used to create Services which take and return Elem objects instead of HTTP responses

Linear Supertypes
AutoFilters[Elem], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Filters
  2. AutoFilters
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type ToBody[BODY] = () ⇒ Body[BODY]

    Permalink
    Definition Classes
    AutoFilters
  2. type ToResponse[OUT] = (OUT) ⇒ ResponseBuilder[_]

    Permalink
    Definition Classes
    AutoFilters

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. def AutoIn[IN](body: Body[IN] with Mandatory[Request, IN]): Filter[Request, Response, IN, Response]

    Permalink
    Definition Classes
    AutoFilters
  5. def AutoInOptionalOut(svc: Service[Elem, Option[Elem]], successStatus: Status = Ok): Service[Request, Response]

    Permalink

    Wrap the enclosed service with auto-marshalling of input and output Elem instances for HTTP POST scenarios which may return an Elem.

    Wrap the enclosed service with auto-marshalling of input and output Elem instances for HTTP POST scenarios which may return an Elem. HTTP OK is returned by default in the auto-marshalled response (overridable), otherwise a 404 is returned

  6. def AutoInOut(svc: Service[Elem, Elem], successStatus: Status = Ok): Service[Request, Response]

    Permalink

    Wrap the enclosed service with auto-marshalling of input and output Elem instances for HTTP POST scenarios which return an Elem.

    Wrap the enclosed service with auto-marshalling of input and output Elem instances for HTTP POST scenarios which return an Elem. HTTP OK is returned by default in the auto-marshalled response (overridable).

  7. def AutoOptionalOut[IN](successStatus: Status = Ok): Filter[IN, Response, IN, Option[Elem]]

    Permalink

    Filter to provide auto-marshalling of Elem instances for HTTP scenarios where an object may not be returned HTTP OK is returned by default in the auto-marshalled response (overridable), otherwise a 404 is returned

  8. def AutoOut[IN](successStatus: Status = Ok): Filter[IN, Response, IN, Elem]

    Permalink

    Filter to provide auto-marshalling of output Elem instances for HTTP scenarios where an object is returned.

    Filter to provide auto-marshalling of output Elem instances for HTTP scenarios where an object is returned. HTTP OK is returned by default in the auto-marshalled response (overridable).

  9. def _AutoInOptionalOut[BODY, OUT](svc: Service[BODY, Option[OUT]], body: Body[BODY] with Mandatory[Request, BODY], toResponse: ToResponse[OUT]): Service[Request, Response]

    Permalink
    Definition Classes
    AutoFilters
  10. def _AutoOptionalOut[IN, OUT](success: ToResponse[OUT]): Filter[IN, Response, IN, Option[OUT]]

    Permalink
    Definition Classes
    AutoFilters
  11. def _AutoOut[IN, OUT](fn: ToResponse[OUT]): Filter[IN, Response, IN, OUT]

    Permalink
    Definition Classes
    AutoFilters
  12. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  13. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  18. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  23. val responseBuilder: ResponseBuilder.type

    Permalink
    Attributes
    protected
    Definition Classes
    FiltersAutoFilters
  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  25. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AutoFilters[Elem]

Inherited from AnyRef

Inherited from Any

Ungrouped