Packages

class OAuth2Response extends AnyRef

A response from a fetch request.

This class represents a secure response from a Oauth2 fetch call.

A fetch is a simplified HTTP response from a protected resource.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. OAuth2Response
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new OAuth2Response(_asJava: AnyRef)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def asJava: AnyRef
  6. def body(): Option[Buffer]

    The HTTP response body as a buffer * @return a buffer with the HTTP response body

  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def getHeader(name: String): String

    Looks up a HTTP response header by name, in case where the response is a list of headers, the first one is returned.

    Looks up a HTTP response header by name, in case where the response is a list of headers, the first one is returned. * @param name of the header to look up

    returns

    the single value for the header.

  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def headers(): Option[MultiMap]

    The HTTP response headers from the HTTP layer.

    The HTTP response headers from the HTTP layer. * @return the HTTP headers

  15. def is(contentType: String): Boolean

    Helper to analize the response body.

    Helper to analize the response body. The test is performed against the header Content-Type, the content of the body is not analyzed. * @param contentType a content type to test, e.g.: application/json

    returns

    true if the header matches

  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. def jsonArray(): Option[JsonArray]

    The HTTP response body as a JsonArray * @return a JsonArray from the HTTP response body

  18. def jsonObject(): Option[JsonObject]

    The HTTP response body as a JsonObject * @return a JsonObject from the HTTP response body

  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. def statusCode(): Int

    the returned status code from the HTTP layer.

    the returned status code from the HTTP layer. * @return HTTP status code

  23. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped