tiscaf

HRestApp

class HRestApp extends HApp

This HApp gives to the user some utility methods to easily write RESTful services.

Linear Supertypes
HApp, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. HRestApp
  2. HApp
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new HRestApp()

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def buffered: Boolean

    Buffered response.

    Buffered response. By default false.

    Definition Classes
    HApp
  8. def chunked: Boolean

    Chunked response.

    Chunked response. By default false.

    Definition Classes
    HApp
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def cookieKey: String

    Session cookie name (if cookie tracking enabled).

    Session cookie name (if cookie tracking enabled). By default TISCAF_SESSIONID.

    Definition Classes
    HApp
  11. def delete(handler: PartialFunction[(List[String], HReqData), HLet]): Unit

  12. def encoding: String

    Response encoding.

    Response encoding. By default UTF-8.

    Definition Classes
    HApp
  13. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def get(handler: PartialFunction[(List[String], HReqData), HLet]): Unit

  17. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  18. def gzip: Boolean

    Gzipped response (for compatible mime types).

    Gzipped response (for compatible mime types). By default false.

    Definition Classes
    HApp
  19. def hashCode(): Int

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

    Definition Classes
    Any
  21. def keepAlive: Boolean

    Keep-Alive TCP connections.

    Keep-Alive TCP connections. By default true.

    Definition Classes
    HApp
  22. def maxSessionsCount: Int

    Maximum sessions count allowed simultaneously on the server.

    Maximum sessions count allowed simultaneously on the server. By default 500.

    Definition Classes
    HApp
  23. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  26. def onSessionInvalidate(sid: String, data: Map[Any, Any]): Unit

    Called when the given session is invalidated.

    Called when the given session is invalidated. Override this to perform specific actions on invalidate. Does nothing by default.

    Definition Classes
    HApp
  27. def patch(handler: PartialFunction[(List[String], HReqData), HLet]): Unit

  28. def post(handler: PartialFunction[(List[String], HReqData), HLet]): Unit

  29. def put(handler: PartialFunction[(List[String], HReqData), HLet]): Unit

  30. final def resolve(req: HReqData): Option[HLet]

    This method takes care of the dispatch based on the HTTP verb of the request.

    This method takes care of the dispatch based on the HTTP verb of the request.

    Definition Classes
    HRestAppHApp
  31. def sessionTimeoutMinutes: Int

    Session timeout in minutes.

    Session timeout in minutes. By default 15 minutes.

    Definition Classes
    HApp
  32. def sidKey: String

    Session ID key name (if URL tracking enabled).

    Session ID key name (if URL tracking enabled). By default sid.

    Definition Classes
    HApp
  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  34. def toString(): String

    Definition Classes
    AnyRef → Any
  35. def tracking: HTracking.Value

    Tracking method for sessions.

    Tracking method for sessions. By default, sessions are not tracked.

    Definition Classes
    HApp
    See also

    tiscaf.HTracking

  36. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from HApp

Inherited from AnyRef

Inherited from Any

Ungrouped