Trait/Object

skinny.micro.scalate

ScalateSupport

Related Docs: object ScalateSupport | package scalate

Permalink

trait ScalateSupport extends SkinnyMicroBase

ScalateSupport creates and configures a template engine and provides helper methods and bindings to integrate with the ServletBase.

Linear Supertypes
SkinnyMicroBase, SessionImplicits, DefaultImplicits, LowPriorityImplicits, LowestPriorityImplicits, TypeConverterSupport, SkinnyMicroParamsImplicits, CookiesImplicits, RouteMatcherImplicits, HaltPassControl, UrlGenerator, ResponseStatusAccessor, ResponseContentTypeAccessor, RequestFormatAccessor, ParamsAccessor, EnvironmentAccessor, ErrorHandlerAccessor, AsyncSupported, CoreHandler, Handler, LoggerProvider, ServletContextAccessor, RicherStringImplicits, ServletApiImplicits, RouteRegistryAccessor, UnstableAccessValidationConfig, SkinnyMicroContextInitializer, Initializable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ScalateSupport
  2. SkinnyMicroBase
  3. SessionImplicits
  4. DefaultImplicits
  5. LowPriorityImplicits
  6. LowestPriorityImplicits
  7. TypeConverterSupport
  8. SkinnyMicroParamsImplicits
  9. CookiesImplicits
  10. RouteMatcherImplicits
  11. HaltPassControl
  12. UrlGenerator
  13. ResponseStatusAccessor
  14. ResponseContentTypeAccessor
  15. RequestFormatAccessor
  16. ParamsAccessor
  17. EnvironmentAccessor
  18. ErrorHandlerAccessor
  19. AsyncSupported
  20. CoreHandler
  21. Handler
  22. LoggerProvider
  23. ServletContextAccessor
  24. RicherStringImplicits
  25. ServletApiImplicits
  26. RouteRegistryAccessor
  27. UnstableAccessValidationConfig
  28. SkinnyMicroContextInitializer
  29. Initializable
  30. AnyRef
  31. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. trait Config extends AnyRef

    Permalink
    Definition Classes
    Initializable
  2. abstract type ConfigT <: AnyRef { ... /* 3 definitions in type refinement */ }

    Permalink
    Definition Classes
    ServletContextAccessor → Initializable
  3. trait SkinnyMicroTemplateEngine extends AnyRef

    Permalink

    A TemplateEngine integrated with SkinnyMicro.

    A TemplateEngine integrated with SkinnyMicro.

    A SkinnyMicroTemplateEngine looks for layouts in /WEB-INF/templates/layouts before searching in /WEB-INF/layouts and /WEB-INF/scalate/layouts.

  4. sealed class TypedMultiParams extends AnyRef

    Permalink
    Definition Classes
    SkinnyMicroParamsImplicits
  5. sealed class TypedParams extends AnyRef

    Permalink
    Definition Classes
    SkinnyMicroParamsImplicits

Abstract Value Members

  1. abstract val doNotFound: Action

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyMicroBase
  2. abstract def requestPath(implicit ctx: SkinnyContext): String

    Permalink
    Definition Classes
    SkinnyMicroBase
  3. abstract def routeBasePath(implicit ctx: SkinnyContext): String

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyMicroBase

Concrete 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. implicit val anyToBoolean: TypeConverter[Any, Boolean]

    Permalink
    Definition Classes
    LowPriorityImplicits
  5. implicit val anyToByte: TypeConverter[Any, Byte]

    Permalink
    Definition Classes
    LowPriorityImplicits
  6. implicit val anyToDouble: TypeConverter[Any, Double]

    Permalink
    Definition Classes
    LowPriorityImplicits
  7. implicit val anyToFloat: TypeConverter[Any, Float]

    Permalink
    Definition Classes
    LowPriorityImplicits
  8. implicit val anyToInt: TypeConverter[Any, Int]

    Permalink
    Definition Classes
    LowPriorityImplicits
  9. implicit val anyToLong: TypeConverter[Any, Long]

    Permalink
    Definition Classes
    LowPriorityImplicits
  10. implicit val anyToShort: TypeConverter[Any, Short]

    Permalink
    Definition Classes
    LowPriorityImplicits
  11. implicit val anyToString: TypeConverter[Any, String]

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

    Permalink
    Definition Classes
    Any
  13. implicit def booleanBlock2RouteMatcher(block: ⇒ Boolean): RouteMatcher

    Permalink
    Attributes
    protected
    Definition Classes
    RouteMatcherImplicits
  14. lazy val charset: Option[String]

    Permalink
    Definition Classes
    SkinnyMicroBase
  15. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  16. var config: ConfigT

    Permalink
    Definition Classes
    ServletContextAccessor
  17. implicit def configWrapper(config: ConfigT): Config { object initParameters }

    Permalink
    Attributes
    protected
    Definition Classes
    ServletContextAccessor → Initializable
  18. def contentType(implicit ctx: SkinnyContext): String

    Permalink
    Definition Classes
    ResponseContentTypeAccessor
  19. def contentTypeInferrer: ContentTypeInferrer

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyMicroBase
  20. def contentType_=(contentType: String)(implicit ctx: SkinnyContext): Unit

    Permalink
    Definition Classes
    ResponseContentTypeAccessor
  21. def context: SkinnyContext

    Permalink
    Definition Classes
    SkinnyMicroContextInitializer
  22. def contextPath: String

    Permalink
    Definition Classes
    ServletContextAccessor
  23. implicit def cookieOptions(implicit ctx: SkinnyContext): CookieOptions

    Permalink
    Definition Classes
    CookiesImplicits
  24. def cookies(implicit ctx: SkinnyContext): SweetCookies

    Permalink
    Definition Classes
    CookiesImplicits
  25. def createRenderContext(out: PrintWriter)(implicit ctx: SkinnyContext): SkinnyScalateRenderContext

    Permalink

    Creates a render context to be used by default in the template engine.

    Creates a render context to be used by default in the template engine.

    Returns a SkinnyMicroRenderContext by default in order to bind some other framework variables (e.g., multiParams, flash). SkinnyMicroTemplateEngine assumes this returns SkinnyMicroRenderContext in its binding of "context". If you return something other than a SkinnyMicroRenderContext, you will also want to redefine that binding.

    Attributes
    protected
  26. def createTemplateEngine(config: ConfigT): TemplateEngine

    Permalink

    Creates the templateMicro from the config.

    Creates the templateMicro from the config. There is little reason to override this unless you have created a ServletBase extension outside an HttpServlet or Filter.

    Attributes
    protected
  27. def currentErrorHandler: ErrorHandler

    Permalink
    Attributes
    protected
    Definition Classes
    ErrorHandlerAccessor
  28. val defaultCharacterEncoding: String

    Permalink
    Attributes
    protected
    Definition Classes
    CoreHandler
  29. def defaultIndexName: String

    Permalink

    The default index page when the path is a directory.

    The default index page when the path is a directory.

    Attributes
    protected
  30. def defaultLayoutPath: Option[String]

    Permalink

    The default path to search for templates.

    The default path to search for templates. Left as a def so it can be read from the servletContext in initialize, but you probably want a constant.

    Defaults to: - /WEB-INF/templates/views (recommended) - /WEB-INF/views (used by previous SkinnyMicro quickstarts) - /WEB-INF/scalate/templates (used by previous SkinnyMicro quickstarts)

    Attributes
    protected
  31. implicit def defaultStringToSeq[T](implicit elementConverter: TypeConverter[String, T], mf: Manifest[T]): TypeConverter[String, Seq[T]]

    Permalink
    Definition Classes
    DefaultImplicits
  32. def defaultTemplateFormat: String

    Permalink

    The default template format.

    The default template format.

    Attributes
    protected
  33. def defaultTemplatePath: List[String]

    Permalink

    The default path to search for templates.

    The default path to search for templates. Left as a def so it can be read from the servletContext in initialize, but you probably want a constant.

    Defaults to: - /WEB-INF/templates/views (recommended) - /WEB-INF/views (used by previous SkinnyMicro quickstarts) - /WEB-INF/scalate/templates (used by previous SkinnyMicro quickstarts)

    Attributes
    protected
  34. def detectTooManyErrorFilterRegistrationAsAnErrorAtSkinnyMicroBase: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    ErrorHandlerAccessor
  35. implicit def enrichRequest(request: HttpServletRequest): RichRequest

    Permalink
    Definition Classes
    ServletApiImplicits
  36. implicit def enrichResponse(response: HttpServletResponse): RichResponse

    Permalink
    Definition Classes
    ServletApiImplicits
  37. implicit def enrichServletContext(servletContext: ServletContext): RichServletContext

    Permalink
    Definition Classes
    ServletApiImplicits
  38. implicit def enrichSession(session: HttpSession): RichHttpServletSession

    Permalink
    Definition Classes
    ServletApiImplicits
  39. def environment: String

    Permalink
    Definition Classes
    EnvironmentAccessor
  40. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  42. def error(handler: ErrorHandler): Unit

    Permalink
    Definition Classes
    ErrorHandlerAccessor
  43. def executeRoutes(request: HttpServletRequest, response: HttpServletResponse): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyMicroBase → CoreHandler
  44. implicit def executionContext: ExecutionContext

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyMicroBase
  45. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  46. def findTemplate(path: String, extensionSet: Set[String] = templateEngine.extensions): Option[String]

    Permalink

    Finds a template for a path.

    Finds a template for a path. Delegates to a TemplateFinder, and if that fails, tries again with /defaultIndexName appended.

    Attributes
    protected
  47. def format_=(formatValue: String)(implicit ctx: SkinnyContext): Unit

    Permalink
    Definition Classes
    RequestFormatAccessor
  48. def fullUrl(path: String, params: Iterable[(String, Any)], includeContextPath: Boolean, includeServletPath: Boolean, withSessionId: Boolean)(implicit ctx: SkinnyContext): String

    Permalink
    Definition Classes
    UrlGenerator
  49. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  50. def halt(result: ActionResult): Nothing

    Permalink
    Definition Classes
    HaltPassControl
  51. def halt[T](status: Integer, body: T, headers: Map[String, String], reason: String)(implicit arg0: Manifest[T]): Nothing

    Permalink
    Definition Classes
    HaltPassControl
  52. def handle(req: HttpServletRequest, res: HttpServletResponse): Unit

    Permalink
    Definition Classes
    ScalateSupport → CoreHandler → Handler
  53. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  54. def initParameter(name: String): Option[String]

    Permalink
    Definition Classes
    ServletContextAccessor
  55. def initialize(config: ConfigT): Unit

    Permalink
    Definition Classes
    ScalateSupport → ServletContextAccessor → Initializable
  56. def invoke(matchedRoute: MatchedRoute): Option[Any]

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyMicroBase
  57. def isAsyncExecutable(result: Any): Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyMicroBase
  58. def isDevelopmentMode: Boolean

    Permalink
    Definition Classes
    EnvironmentAccessor
  59. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  60. def isScalateErrorPageEnabled: Boolean

    Permalink

    Flag whether the Scalate error page is enabled.

    Flag whether the Scalate error page is enabled. If true, uncaught exceptions will be caught and rendered by the Scalate error page.

    The default is true.

    Attributes
    protected
  61. def jade(path: String, attributes: (String, Any)*)(implicit ctx: SkinnyContext): String

    Permalink

    Convenience method for layoutTemplateAs("jade").

    Convenience method for layoutTemplateAs("jade").

    Attributes
    protected
  62. def layoutTemplate(path: String, attributes: (String, Any)*)(implicit ctx: SkinnyContext): String

    Permalink

    Finds and renders a template with the current layout strategy, looking for all known extensions, returning the result.

    Finds and renders a template with the current layout strategy, looking for all known extensions, returning the result.

    path

    The path of the template, passed to findTemplate.

    attributes

    Attributes to path to the render context. Disable layouts by passing layout -> "".

    Attributes
    protected
  63. def layoutTemplateAs(ext: Set[String])(path: String, attributes: (String, Any)*)(implicit ctx: SkinnyContext): String

    Permalink

    Finds and renders a template with the current layout strategy, returning the result.

    Finds and renders a template with the current layout strategy, returning the result.

    ext

    The extensions to look for a template.

    path

    The path of the template, passed to findTemplate.

    attributes

    Attributes to path to the render context. Disable layouts by passing layout -> "".

    Attributes
    protected
  64. def logger: Logger

    Permalink
    Attributes
    protected
    Definition Classes
    LoggerProvider
  65. def loggerName: String

    Permalink
    Attributes
    protected
    Definition Classes
    LoggerProvider
  66. implicit def lowestPriorityAny2T[T](implicit arg0: Manifest[T]): TypeConverter[Any, T]

    Permalink
    Definition Classes
    LowestPriorityImplicits
  67. def maxDurationToAwaitAsyncFilters: Duration

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyMicroBase
  68. def methodNotAllowed(f: (Set[HttpMethod]) ⇒ Any): Unit

    Permalink
    Definition Classes
    SkinnyMicroBase
  69. def mount(ctx: ServletContext): Unit

    Permalink
    Definition Classes
    Handler
  70. def multiParams(key: String)(implicit ctx: SkinnyContext): Seq[String]

    Permalink
    Definition Classes
    ParamsAccessor
  71. def multiParams(implicit ctx: SkinnyContext): MultiParams

    Permalink
    Definition Classes
    ParamsAccessor
  72. def mustache(path: String, attributes: (String, Any)*)(implicit ctx: SkinnyContext): String

    Permalink

    Convenience method for layoutTemplateAs("mustache").

    Convenience method for layoutTemplateAs("mustache").

    Attributes
    protected
  73. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  74. def notFound(fun: ⇒ Any): Unit

    Permalink
    Definition Classes
    SkinnyMicroBase
  75. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  77. def params(implicit ctx: SkinnyContext): Params

    Permalink
    Definition Classes
    ParamsAccessor
  78. def params(key: Symbol)(implicit ctx: SkinnyContext): String

    Permalink
    Definition Classes
    ParamsAccessor
  79. def params(key: String)(implicit ctx: SkinnyContext): String

    Permalink
    Definition Classes
    ParamsAccessor
  80. def pass(): Nothing

    Permalink
    Definition Classes
    HaltPassControl
  81. implicit def pathPatternParser2RouteMatcher(pattern: PathPattern): RouteMatcher

    Permalink
    Attributes
    protected
    Definition Classes
    RouteMatcherImplicits
  82. def redirect(uri: String)(implicit ctx: SkinnyContext): Nothing

    Permalink
    Definition Classes
    SkinnyMicroBase
  83. implicit def regex2RouteMatcher(regex: Regex): RouteMatcher

    Permalink
    Attributes
    protected
    Definition Classes
    RouteMatcherImplicits
  84. def relativeUrl(path: String, params: Iterable[(String, Any)], includeContextPath: Boolean, includeServletPath: Boolean)(implicit ctx: SkinnyContext): String

    Permalink
    Definition Classes
    UrlGenerator
  85. def removeRoute(method: String, route: Route): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyMicroBase
  86. def removeRoute(method: HttpMethod, route: Route): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyMicroBase
  87. def renderHaltException(e: HaltException)(implicit ctx: SkinnyContext): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyMicroBase
  88. def renderPipeline(implicit ctx: SkinnyContext): RenderPipeline

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyMicroBase
  89. def renderResponse(actionResult: Any)(implicit ctx: SkinnyContext): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyMicroBase
  90. def renderResponseBody(actionResult: Any)(implicit ctx: SkinnyContext): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyMicroBase
  91. def renderUncaughtException(e: Throwable)(implicit ctx: SkinnyContext): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    ScalateSupport → SkinnyMicroBase
  92. def request(implicit ctx: SkinnyContext): HttpServletRequest

    Permalink
    Definition Classes
    SkinnyMicroContextInitializer
  93. def respondTo: Seq[Format]

    Permalink
    Attributes
    protected
    Definition Classes
    Handler
  94. def response(implicit ctx: SkinnyContext): HttpServletResponse

    Permalink
    Definition Classes
    SkinnyMicroContextInitializer
  95. val routes: RouteRegistry

    Permalink
    Attributes
    protected
    Definition Classes
    RouteRegistryAccessor
  96. def runRoutes(routes: Traversable[Route]): Stream[Any]

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyMicroBase
  97. implicit def safe[S, T](f: (S) ⇒ T): TypeConverter[S, T]

    Permalink
    Definition Classes
    TypeConverterSupport
  98. implicit def safeOption[S, T](f: (S) ⇒ Option[T]): TypeConverter[S, T]

    Permalink
    Definition Classes
    TypeConverterSupport
  99. def scaml(path: String, attributes: (String, Any)*)(implicit ctx: SkinnyContext): String

    Permalink

    Convenience method for layoutTemplateAs("scaml").

    Convenience method for layoutTemplateAs("scaml").

    Attributes
    protected
  100. implicit def seqHead[T](implicit elementConverter: TypeConverter[String, T], mf: Manifest[T]): TypeConverter[Seq[String], T]

    Permalink
    Definition Classes
    DefaultImplicits
  101. implicit def seqToSeq[T](implicit elementConverter: TypeConverter[String, T], mf: Manifest[T]): TypeConverter[Seq[String], Seq[T]]

    Permalink
    Definition Classes
    DefaultImplicits
  102. def serverAuthority(implicit ctx: SkinnyContext): String

    Permalink
    Attributes
    protected
    Definition Classes
    ServletContextAccessor
  103. def serverHost(implicit ctx: SkinnyContext): String

    Permalink
    Definition Classes
    ServletContextAccessor
  104. def serverPort(implicit ctx: SkinnyContext): Int

    Permalink
    Definition Classes
    ServletContextAccessor
  105. implicit def servletContext: ServletContext

    Permalink
    Definition Classes
    ServletContextAccessor
  106. def session(key: Symbol)(implicit ctx: SkinnyContext): Any

    Permalink
    Definition Classes
    SessionImplicits
  107. def session(key: String)(implicit ctx: SkinnyContext): Any

    Permalink
    Definition Classes
    SessionImplicits
  108. implicit def session(implicit ctx: SkinnyContext): HttpSession

    Permalink
    Definition Classes
    SessionImplicits
  109. def sessionOption(implicit ctx: SkinnyContext): Option[HttpSession]

    Permalink
    Definition Classes
    SessionImplicits
  110. def setMultiparams[S](matchedRoute: Option[MatchedRoute], originalParams: MultiParams)(implicit ctx: SkinnyContext): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyMicroBase
  111. def shutdown(): Unit

    Permalink
    Definition Classes
    ScalateSupport → Initializable
  112. def skinnyContext(implicit ctx: ServletContext): SkinnyContext

    Permalink
    Definition Classes
    SkinnyMicroContextInitializer
  113. def ssp(path: String, attributes: (String, Any)*)(implicit ctx: SkinnyContext): String

    Permalink

    Convenience method for layoutTemplateAs("ssp").

    Convenience method for layoutTemplateAs("ssp").

    Attributes
    protected
  114. def status(implicit ctx: SkinnyContext): Int

    Permalink
    Definition Classes
    ResponseStatusAccessor
  115. def status_=(code: Int)(implicit ctx: SkinnyContext): Unit

    Permalink
    Definition Classes
    ResponseStatusAccessor
  116. implicit def string2RouteMatcher(path: String): RouteMatcher

    Permalink
    Attributes
    protected
    Definition Classes
    RouteMatcherImplicits
  117. implicit val stringToBoolean: TypeConverter[String, Boolean]

    Permalink
    Definition Classes
    DefaultImplicits
  118. implicit val stringToByte: TypeConverter[String, Byte]

    Permalink
    Definition Classes
    DefaultImplicits
  119. def stringToDate(format: ⇒ String): TypeConverter[String, Date]

    Permalink
    Definition Classes
    DefaultImplicits
  120. def stringToDateFormat(format: ⇒ DateFormat): TypeConverter[String, Date]

    Permalink
    Definition Classes
    DefaultImplicits
  121. implicit val stringToDouble: TypeConverter[String, Double]

    Permalink
    Definition Classes
    DefaultImplicits
  122. implicit val stringToFloat: TypeConverter[String, Float]

    Permalink
    Definition Classes
    DefaultImplicits
  123. implicit val stringToInt: TypeConverter[String, Int]

    Permalink
    Definition Classes
    DefaultImplicits
  124. implicit val stringToLong: TypeConverter[String, Long]

    Permalink
    Definition Classes
    DefaultImplicits
  125. implicit def stringToRicherString(s: String): RicherString

    Permalink
    Definition Classes
    RicherStringImplicits
  126. implicit val stringToSelf: TypeConverter[String, String]

    Permalink
    Definition Classes
    DefaultImplicits
  127. def stringToSeq[T](elementConverter: TypeConverter[String, T], separator: String)(implicit arg0: Manifest[T]): TypeConverter[String, Seq[T]]

    Permalink
    Definition Classes
    DefaultImplicits
  128. implicit val stringToShort: TypeConverter[String, Short]

    Permalink
    Definition Classes
    DefaultImplicits
  129. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  130. def templateAttributes(key: String)(implicit ctx: SkinnyContext): Any

    Permalink
    Attributes
    protected
  131. def templateAttributes(implicit ctx: SkinnyContext): Map[String, Any]

    Permalink

    A request-scoped map of attributes to pass to the template.

    A request-scoped map of attributes to pass to the template. This map will be set to any render context created with the createRenderContext method.

    Attributes
    protected
  132. var templateEngine: TemplateEngine

    Permalink

    The template engine used by the methods in this support class.

    The template engine used by the methods in this support class. It provides a lower-level interface to Scalate and may be used directly to circumvent the conventions imposed by the helpers in this class. For instance, paths passed directly to the template engine are not run through findTemplate.

    Attributes
    protected[this]
  133. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  134. implicit def toTypedMultiParams(params: MultiParams): TypedMultiParams

    Permalink
    Definition Classes
    SkinnyMicroParamsImplicits
  135. implicit def toTypedParams(params: Params): TypedParams

    Permalink
    Definition Classes
    SkinnyMicroParamsImplicits
  136. def unstableAccessValidationEnabled: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    UnstableAccessValidationConfig
  137. def url(path: String, params: Iterable[(String, Any)], includeContextPath: Boolean, includeServletPath: Boolean, absolutize: Boolean, withSessionId: Boolean)(implicit ctx: SkinnyContext): String

    Permalink
    Definition Classes
    UrlGenerator
  138. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  141. def withRequest[A](request: HttpServletRequest)(f: ⇒ A): A

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyMicroContextInitializer
  142. def withRequestResponse[A](request: HttpServletRequest, response: HttpServletResponse)(f: ⇒ A): A

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyMicroContextInitializer
  143. def withResponse[A](response: HttpServletResponse)(f: ⇒ A): A

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyMicroContextInitializer
  144. def withRouteMultiParams[S](matchedRoute: Option[MatchedRoute])(thunk: ⇒ S): S

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyMicroBase

Inherited from SkinnyMicroBase

Inherited from SessionImplicits

Inherited from DefaultImplicits

Inherited from LowPriorityImplicits

Inherited from LowestPriorityImplicits

Inherited from TypeConverterSupport

Inherited from SkinnyMicroParamsImplicits

Inherited from CookiesImplicits

Inherited from RouteMatcherImplicits

Inherited from HaltPassControl

Inherited from UrlGenerator

Inherited from ResponseStatusAccessor

Inherited from ResponseContentTypeAccessor

Inherited from RequestFormatAccessor

Inherited from ParamsAccessor

Inherited from EnvironmentAccessor

Inherited from ErrorHandlerAccessor

Inherited from AsyncSupported

Inherited from CoreHandler

Inherited from Handler

Inherited from LoggerProvider

Inherited from ServletContextAccessor

Inherited from RicherStringImplicits

Inherited from ServletApiImplicits

Inherited from RouteRegistryAccessor

Inherited from UnstableAccessValidationConfig

Inherited from SkinnyMicroContextInitializer

Inherited from Initializable

Inherited from AnyRef

Inherited from Any

Ungrouped