org.hyperscala.web

BasicWebsite

trait BasicWebsite extends WebApplication[MapSession] with Website[MapSession]

BasicWebsite simply provides a default MapSession implementation if your site doesn't need special handling for the session.

Linear Supertypes
Website[MapSession], WebApplication[MapSession], NotFoundApplication, SessionApplication[MapSession], HandlerApplication, Logging, LoggingCore, HttpApplication, Disposable, Updatable, HttpHandler, Listenable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BasicWebsite
  2. Website
  3. WebApplication
  4. NotFoundApplication
  5. SessionApplication
  6. HandlerApplication
  7. Logging
  8. LoggingCore
  9. HttpApplication
  10. Disposable
  11. Updatable
  12. HttpHandler
  13. Listenable
  14. AnyRef
  15. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class SessionCreateHandler extends HttpHandler

    Definition Classes
    SessionApplication
  2. class Sessions extends AnyRef

    Definition Classes
    SessionApplication

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. def addClassPath(urlBasePath: String, lookupPath: String, allowCaching: Boolean, priority: Priority): FunctionalListener[(HttpRequest, HttpResponse), HttpResponse]

    Definition Classes
    WebApplication
  7. def addContent(creator: (HttpRequest) ⇒ HttpContent, uris: String*): HttpHandler

    Definition Classes
    WebApplication
  8. def addContent(creator: ⇒ HttpContent, uris: String*): HttpHandler

    Definition Classes
    WebApplication
  9. def addFilePath(urlBasePath: String, lookupPath: String, allowCaching: Boolean, priority: Priority): FunctionalListener[(HttpRequest, HttpResponse), HttpResponse]

    Definition Classes
    WebApplication
  10. def addHandler(handler: HttpHandler, uris: String*): HttpHandler

    Definition Classes
    WebApplication
  11. val application: MapStorage[Any, Any]

    Application stores content that should be persistent throughout the life of the website.

    Application stores content that should be persistent throughout the life of the website.

    Definition Classes
    Website
  12. def around(f: ⇒ Unit): Unit

    Definition Classes
    HttpApplication
  13. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  14. def asynchronousLogging: Boolean

    Attributes
    protected
    Definition Classes
    LoggingCore
  15. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  16. def contextualize[T](context: Storage[String, Any])(f: ⇒ T): T

    Definition Classes
    HttpApplication
  17. def contextualize[T](request: HttpRequest)(f: ⇒ T): T

    Definition Classes
    HttpApplication
  18. def cookieName: String

    Attributes
    protected
    Definition Classes
    SessionApplication
  19. def createSession(request: HttpRequest, id: String): MapSession

    Attributes
    protected
    Definition Classes
    BasicWebsite → SessionApplication
  20. def debug(message: ⇒ Any): Unit

    Definition Classes
    Logging
  21. def dispose(): Unit

    Definition Classes
    Website → SessionApplication → HttpApplication → Disposable
  22. val disposed: UnitProcessor[HttpApplication]

    Definition Classes
    HttpApplication
  23. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  25. def error(message: ⇒ Any, t: Throwable): Unit

    Definition Classes
    Logging
  26. def error(message: ⇒ Any): Unit

    Definition Classes
    Logging
  27. def errorPage(request: HttpRequest, response: HttpResponse, status: HttpResponseStatus = ...): HttpResponse

    Definition Classes
    Website
  28. def errorThrown(t: Throwable): Unit

    Definition Classes
    Website
  29. def finalize(): Unit

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

    Definition Classes
    AnyRef → Any
  31. val handlers: HandlerProcessor

    Definition Classes
    HandlerApplication
  32. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  33. def info(message: ⇒ Any): Unit

    Definition Classes
    Logging
  34. def init(): Unit

    Definition Classes
    Website → HttpApplication
  35. final def initialize(): Unit

    Definition Classes
    HttpApplication
  36. def initialized: Boolean

    Definition Classes
    HttpApplication
  37. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  38. def isRunning: Boolean

    Definition Classes
    HttpApplication
  39. def listen[Event, Response, Result](name: String, priority: Priority, modes: ListenMode*)(f: (Event) ⇒ Response)(implicit eventManifest: Manifest[Event]): FunctionalListener[Event, Response]

    Definition Classes
    Listenable
  40. val listeners: Listeners

    Definition Classes
    Listenable
  41. def log(level: Level, message: ⇒ Any): Unit

    Definition Classes
    LoggingCore
  42. val logger: InnerLogging

    Definition Classes
    LoggingCore
  43. def loggingClassName: String

    Attributes
    protected
    Definition Classes
    LoggingCore
  44. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  45. def notFoundContent(request: HttpRequest): StringContent

    Attributes
    protected
    Definition Classes
    WebApplication → NotFoundApplication
  46. final def notify(): Unit

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

    Definition Classes
    AnyRef
  48. def onReceive(request: HttpRequest, response: HttpResponse): HttpResponse

    Definition Classes
    NotFoundApplication → HttpHandler
  49. def page(creator: ⇒ Webpage, scope: Scope, uris: String*): WebpageHandler

    Definition Classes
    Website
  50. val pageError: UnitProcessor[(Webpage, Throwable)]

    Invoked when a page throws an error.

    Invoked when a page throws an error.

    Definition Classes
    Website
  51. lazy val pages: Pages[MapSession]

    Access to all currently loaded pages.

    Access to all currently loaded pages.

    Definition Classes
    Website
  52. def processRequest(request: HttpRequest, response: HttpResponse): HttpResponse

    Attributes
    protected
    Definition Classes
    HandlerApplication → HttpApplication
  53. def receive(request: HttpRequest): HttpResponse

    Definition Classes
    HttpApplication
  54. final def receiveContextualized(request: HttpRequest)(responseHandler: (HttpResponse) ⇒ Unit): Unit

    Definition Classes
    HttpApplication
  55. def register(resource: String): Unit

    Definition Classes
    WebApplication
  56. def register(path: String, url: URL): Unit

    Definition Classes
    WebApplication
  57. def register(path: String, resource: String): Unit

    Definition Classes
    WebApplication
  58. def remove(id: String): Unit

    Attributes
    protected[com.outr.net.http.session]
    Definition Classes
    SessionApplication
  59. def removeContent(uri: String): Unit

    Definition Classes
    WebApplication
  60. def request: HttpRequest

    Definition Classes
    HttpApplication
  61. def requestContext: Storage[String, Any]

    Definition Classes
    HttpApplication
  62. def session: MapSession

    Definition Classes
    SessionApplication
  63. lazy val sessions: Sessions

    Definition Classes
    SessionApplication
  64. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  65. implicit val thisListenable: Listenable

    Definition Classes
    Listenable
  66. def toString(): String

    Definition Classes
    AnyRef → Any
  67. def trace(message: ⇒ Any): Unit

    Definition Classes
    Logging
  68. def update(delta: Double): Unit

    Definition Classes
    Website → SessionApplication → Updatable
  69. def updateFrequency: Double

    Definition Classes
    HttpApplication
  70. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  73. def warn(message: ⇒ Any, t: Throwable): Unit

    Definition Classes
    Logging
  74. def warn(message: ⇒ Any): Unit

    Definition Classes
    Logging

Inherited from Website[MapSession]

Inherited from WebApplication[MapSession]

Inherited from NotFoundApplication

Inherited from SessionApplication[MapSession]

Inherited from HandlerApplication

Inherited from Logging

Inherited from LoggingCore

Inherited from HttpApplication

Inherited from Disposable

Inherited from Updatable

Inherited from HttpHandler

Inherited from Listenable

Inherited from AnyRef

Inherited from Any

Ungrouped