Object

org.squbs.marshallers.json

JacksonMapperSupport

Related Doc: package json

Permalink

object JacksonMapperSupport

Supports Jackson marshalling and unmarshalling allowing per-type configuration. This allows configuring separate mappers for each type, falling back to a default.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JacksonMapperSupport
  2. AnyRef
  3. 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 clone(): AnyRef

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

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  12. implicit def jacksonMarshaller[T](implicit ct: ClassTag[T]): ToEntityMarshaller[T]

    Permalink

    Scala API.

    Scala API. Just import JacksonMapperSupport._ and life is good.

    T

    The type for the marshaller

    ct

    The class tag auto-generated by the compiler

    returns

    A Jackson marshaller configured for the specific type

  13. implicit def jacksonUnmarshaller[T](implicit ct: ClassTag[T]): FromEntityUnmarshaller[T]

    Permalink

    Scala API.

    Scala API. Just import JacksonMapperSupport._ and life is good.

    T

    The type for the unmarshaller

    ct

    The class tag auto-generated by the compiler

    returns

    A Jackson unmarshaller configured for the specific type

  14. def marshaller[T <: AnyRef](clazz: Class[T]): Marshaller[T, RequestEntity]

    Permalink

    Java API to generate a Jackson marshaller.

    Java API to generate a Jackson marshaller.

    T

    The type to unmarshal, auto-inferred

    clazz

    The class for marshalling

    returns

    The Jackson marshaller configured for the specific type

  15. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  18. def register[T](mapper: ObjectMapper)(implicit arg0: ClassTag[T]): Unit

    Permalink

    Scala API for registering a class-specific mapper.

    Scala API for registering a class-specific mapper.

    T

    The type to apply this mapper.

    mapper

    The mapper

  19. def register(clazz: Class[_], mapper: ObjectMapper): Unit

    Permalink

    Java API for registering a class-specific mapper.

    Java API for registering a class-specific mapper.

    clazz

    The class requiring a mapper

    mapper

    The mapper

  20. def setDefaultMapper(objectMapper: ObjectMapper): Unit

    Permalink

    Sets given mapper as the new default object mapper.

    Sets given mapper as the new default object mapper.

    objectMapper

    The new default object mapper

  21. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  23. def unmarshaller[R](clazz: Class[R]): Unmarshaller[HttpEntity, R]

    Permalink

    Java API to generate a Jackson unmarshaller.

    Java API to generate a Jackson unmarshaller.

    R

    The type for the unmarshaller

    clazz

    The class for unmarshalling

    returns

    A Jackson unmarshaller configured for the specific type

  24. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped