skinny.filter

AsyncSkinnyRenderingFilter

trait AsyncSkinnyRenderingFilter extends SkinnyFilter with AsyncBeforeAfterActionFeature with AsyncSkinnyWebPageControllerFeatures

Skinny Rendering Filter.

If you use Skinny Micro's filter (before/after not beforeAction/afterAction), be careful. It's pretty tricky. Skinny Micro's filters would be applied for all the controllers defined below in Bootstrap.

Linear Supertypes
AsyncSkinnyWebPageControllerFeatures, AsyncXFrameOptionsHeaderFeature, AsyncXXSSProtectionHeaderFeature, AsyncCSRFProtectionFeature, AsyncCSRFTokenSupport, ScalateTemplateEngineFeature, ScalateSupport, TemplateEngineFeature, FlashFeature, FlashMapSupport, AsyncBeforeAfterActionFeature, AsyncBeforeAfterDsl, SkinnyFilter, SkinnyControllerCommonBase, SkinnyFilterActivation, ParamsPermitImplicits, ParametersGetAsImplicits, RoutesAsImplicits, XContentTypeOptionsNosniffHeaderFeature, TimeLoggingFeature, SensitiveParametersFeature, TimeLogging, ValidationFeature, JSONFeature, JSONSupport, JSONStringOps, ChunkedResponseFeature, ChunkedResponseSupport, RequestScopeFeature, LocaleFeature, SnakeCasedParamKeysFeature, BeforeAfterDsl, ActionDefinitionFeature, ExplicitRedirectFeature, UrlGeneratorSupport, FormParamsFeature, QueryParamsFeature, EnvFeature, ApiFormats, SkinnyMicroBase, SessionImplicits, DefaultImplicits, LowPriorityImplicits, LowestPriorityImplicits, micro.implicits.TypeConverterSupport, SkinnyMicroParamsImplicits, CookiesImplicits, RouteMatcherImplicits, HaltPassControl, UrlGenerator, ResponseStatusAccessor, ResponseContentTypeAccessor, RequestFormatAccessor, FormParamsAccessor, QueryParamsAccessor, ParamsAccessor, EnvAccessor, ErrorHandlerAccessor, RedirectionDsl, AsyncSupported, Handler, logging.LoggerProvider, ServletContextAccessor, RicherStringImplicits, ServletApiImplicits, RouteRegistryAccessor, UnstableAccessValidationConfig, SkinnyContextInitializer, Initializable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. AsyncSkinnyRenderingFilter
  2. AsyncSkinnyWebPageControllerFeatures
  3. AsyncXFrameOptionsHeaderFeature
  4. AsyncXXSSProtectionHeaderFeature
  5. AsyncCSRFProtectionFeature
  6. AsyncCSRFTokenSupport
  7. ScalateTemplateEngineFeature
  8. ScalateSupport
  9. TemplateEngineFeature
  10. FlashFeature
  11. FlashMapSupport
  12. AsyncBeforeAfterActionFeature
  13. AsyncBeforeAfterDsl
  14. SkinnyFilter
  15. SkinnyControllerCommonBase
  16. SkinnyFilterActivation
  17. ParamsPermitImplicits
  18. ParametersGetAsImplicits
  19. RoutesAsImplicits
  20. XContentTypeOptionsNosniffHeaderFeature
  21. TimeLoggingFeature
  22. SensitiveParametersFeature
  23. TimeLogging
  24. ValidationFeature
  25. JSONFeature
  26. JSONSupport
  27. JSONStringOps
  28. ChunkedResponseFeature
  29. ChunkedResponseSupport
  30. RequestScopeFeature
  31. LocaleFeature
  32. SnakeCasedParamKeysFeature
  33. BeforeAfterDsl
  34. ActionDefinitionFeature
  35. ExplicitRedirectFeature
  36. UrlGeneratorSupport
  37. FormParamsFeature
  38. QueryParamsFeature
  39. EnvFeature
  40. ApiFormats
  41. SkinnyMicroBase
  42. SessionImplicits
  43. DefaultImplicits
  44. LowPriorityImplicits
  45. LowestPriorityImplicits
  46. TypeConverterSupport
  47. SkinnyMicroParamsImplicits
  48. CookiesImplicits
  49. RouteMatcherImplicits
  50. HaltPassControl
  51. UrlGenerator
  52. ResponseStatusAccessor
  53. ResponseContentTypeAccessor
  54. RequestFormatAccessor
  55. FormParamsAccessor
  56. QueryParamsAccessor
  57. ParamsAccessor
  58. EnvAccessor
  59. ErrorHandlerAccessor
  60. RedirectionDsl
  61. AsyncSupported
  62. Handler
  63. LoggerProvider
  64. ServletContextAccessor
  65. RicherStringImplicits
  66. ServletApiImplicits
  67. RouteRegistryAccessor
  68. UnstableAccessValidationConfig
  69. SkinnyContextInitializer
  70. Initializable
  71. AnyRef
  72. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. trait Config extends AnyRef

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

    Definition Classes
    ServletContextAccessor → Initializable
  3. sealed trait RenderingRequired extends AnyRef

    Definition Classes
    SkinnyFilterActivation
  4. trait SkinnyMicroTemplateEngine extends AnyRef

    Definition Classes
    ScalateSupport
  5. sealed class TypedMultiParams extends AnyRef

    Definition Classes
    SkinnyMicroParamsImplicits
  6. sealed class TypedParams extends AnyRef

    Definition Classes
    SkinnyMicroParamsImplicits

Abstract Value Members

  1. abstract val doNotFound: () ⇒ Any

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

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

    Attributes
    protected
    Definition Classes
    SkinnyMicroBase

Concrete 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. object WithRendering extends controller.feature.SkinnyControllerCommonBase.RenderingRequired with Product with Serializable

    Definition Classes
    SkinnyFilterActivation
  7. object WithoutRendering extends controller.feature.SkinnyControllerCommonBase.RenderingRequired with Product with Serializable

    Definition Classes
    SkinnyFilterActivation
  8. def acceptHeader(implicit request: HttpServletRequest): List[String]

    Definition Classes
    ApiFormats
  9. def acceptedFormats(accepted: Symbol*): Boolean

    Attributes
    protected
    Definition Classes
    ApiFormats
  10. val actionDefinitions: ArrayBuffer[ActionDefinition]

    Note: Same action method name should be registered several times.

    Note: Same action method name should be registered several times. For example, put("/members/:id")(...).as('update) and patch("/members/:id")(...).as('update).

    Attributes
    protected
    Definition Classes
    ActionDefinitionFeature
  11. def addActionDefinition(actionDef: ActionDefinition): Unit

    Adds action definition

    Adds action definition

    actionDef

    action definition

    Definition Classes
    ActionDefinitionFeature
  12. def addErrorFilter(handler: ErrorHandler): Unit

    Adds error handler which doesn't return result to SkinnyController.

    Adds error handler which doesn't return result to SkinnyController.

    handler

    Definition Classes
    SkinnyFilterActivation
  13. def addMimeMapping(mime: String, extension: String): Unit

    Attributes
    protected
    Definition Classes
    ApiFormats
  14. def addParam(name: String, value: Any)(implicit ctx: SkinnyContext = context): Unit

    Add param to params in the request scope.

    Add param to params in the request scope.

    name

    name

    value

    value

    Definition Classes
    RequestScopeFeature
  15. def addRenderingErrorFilter(handler: ErrorHandler): Unit

    Adds error handler which renders body to SkinnyController.

    Adds error handler which renders body to SkinnyController.

    handler

  16. def after(transformers: RouteTransformer*)(fun: (micro.Context) ⇒ Any): Unit

    Definition Classes
    AsyncBeforeAfterDsl
  17. def after(transformers: RouteTransformer*)(fun: ⇒ Any): Unit

    Definition Classes
    BeforeAfterDsl
  18. def afterAction(only: Seq[Symbol] = Nil, except: Seq[Symbol] = Nil)(action: (micro.Context) ⇒ Any): Unit

    Registers afterAction to this controller.

    Registers afterAction to this controller.

    only

    this action should be applied only for these action methods

    except

    this action should not be applied for these action methods

    action

    action

    Definition Classes
    AsyncBeforeAfterActionFeature
  19. def afterFilter(only: Seq[Symbol] = Nil, except: Seq[Symbol] = Nil)(action: (micro.Context) ⇒ Any): Unit

    If you prefer #afterFilter than #afterAction, keep going!

    If you prefer #afterFilter than #afterAction, keep going!

    Definition Classes
    AsyncBeforeAfterActionFeature
  20. implicit val anyToBoolean: micro.implicits.TypeConverter[Any, Boolean]

    Definition Classes
    LowPriorityImplicits
  21. implicit val anyToByte: micro.implicits.TypeConverter[Any, Byte]

    Definition Classes
    LowPriorityImplicits
  22. implicit val anyToDouble: micro.implicits.TypeConverter[Any, Double]

    Definition Classes
    LowPriorityImplicits
  23. implicit val anyToFloat: micro.implicits.TypeConverter[Any, Float]

    Definition Classes
    LowPriorityImplicits
  24. implicit val anyToInt: micro.implicits.TypeConverter[Any, Int]

    Definition Classes
    LowPriorityImplicits
  25. implicit val anyToLong: micro.implicits.TypeConverter[Any, Long]

    Definition Classes
    LowPriorityImplicits
  26. implicit val anyToShort: micro.implicits.TypeConverter[Any, Short]

    Definition Classes
    LowPriorityImplicits
  27. implicit val anyToString: micro.implicits.TypeConverter[Any, String]

    Definition Classes
    LowPriorityImplicits
  28. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  29. def asJValue[T](obj: T)(implicit writer: Writer[T]): JValue

    Definition Classes
    JSONStringOps
  30. def before(transformers: RouteTransformer*)(fun: (micro.Context) ⇒ Any): Unit

    Definition Classes
    AsyncBeforeAfterDsl
  31. def before(transformers: RouteTransformer*)(fun: ⇒ Any): Unit

    Definition Classes
    BeforeAfterDsl
  32. def beforeAction(only: Seq[Symbol] = Nil, except: Seq[Symbol] = Nil)(action: (micro.Context) ⇒ Any): Unit

    Registers beforeAction to this controller.

    Registers beforeAction to this controller.

    only

    this action should be applied only for these action methods

    except

    this action should not be applied for these action methods

    action

    action

    Definition Classes
    AsyncBeforeAfterActionFeature
  33. def beforeFilter(only: Seq[Symbol] = Nil, except: Seq[Symbol] = Nil)(action: (micro.Context) ⇒ Any): Unit

    If you prefer #beforeFilter than #beforeAction, keep going!

    If you prefer #beforeFilter than #beforeAction, keep going!

    Definition Classes
    AsyncBeforeAfterActionFeature
  34. implicit def booleanBlock2RouteMatcher(block: ⇒ Boolean): RouteMatcher

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

    Definition Classes
    SkinnyMicroBase
  36. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. def compact(value: JValue): String

    Definition Classes
    JSONStringOps
  38. var config: ConfigT

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

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

    Definition Classes
    ResponseContentTypeAccessor
  41. def contentTypeInferrer: ContentTypeInferrer

    Attributes
    protected
    Definition Classes
    ApiFormats → SkinnyMicroBase
  42. def contentType_=(contentType: String)(implicit ctx: SkinnyContext): Unit

    Definition Classes
    ResponseContentTypeAccessor
  43. def context: SkinnyContext

    Definition Classes
    SkinnyContextInitializer
  44. def contextPath: String

    Definition Classes
    ServletContextAccessor
  45. implicit def convertParamsToStrongParameters(params: micro.Params): StrongParameters

    Definition Classes
    ParamsPermitImplicits
  46. implicit def convertRouteToRichRoute(route: Route)(implicit controller: SkinnyControllerCommonBase): RichRoute

    Definition Classes
    RoutesAsImplicits
  47. implicit def cookieOptions(implicit ctx: SkinnyContext): CookieOptions

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

    Definition Classes
    CookiesImplicits
  49. def createI18n()(implicit locale: Locale = ...): I18n

    Creates skinny.

    Creates skinny.I18n instance for current locale.

    locale

    current locale

    returns

    i18n provider

    Attributes
    protected
    Definition Classes
    SkinnyControllerCommonBase
  50. def createRenderContext(out: PrintWriter)(implicit ctx: SkinnyContext): SkinnyScalateRenderContext

    Creates a RenderContext instance for Skinny app.

    Creates a RenderContext instance for Skinny app.

    Attributes
    protected
    Definition Classes
    ScalateTemplateEngineFeature → ScalateSupport
  51. def createSkinnyScalateRenderContext(ctx: SkinnyContext): SkinnyScalateRenderContext

    Attributes
    protected
    Definition Classes
    ScalateTemplateEngineFeature
  52. def createTemplateEngine(config: ConfigT): TemplateEngine

    Creates TemplateEngine instance for Skinny app.

    Creates TemplateEngine instance for Skinny app.

    config

    configuration

    returns

    TemplateEngine instance

    Attributes
    protected
    Definition Classes
    ScalateTemplateEngineFeature → ScalateSupport
  53. def csrfKey: String

    Overrides Scalatra's default key name.

    Overrides Scalatra's default key name.

    Definition Classes
    AsyncCSRFProtectionFeature → AsyncCSRFTokenSupport
  54. def csrfToken(implicit ctx: SkinnyContext): String

    Attributes
    protected[skinny]
    Definition Classes
    AsyncCSRFTokenSupport
  55. def currentActionName(implicit cxt: SkinnyContext = context): Option[Symbol]

    Returns action name for this request.

    Returns action name for this request.

    returns

    action name

    Definition Classes
    ActionDefinitionFeature
  56. def currentErrorHandler: ErrorHandler

    Attributes
    protected
    Definition Classes
    ErrorHandlerAccessor
  57. def currentLocale(implicit ctx: SkinnyContext): Option[Locale]

    Returns current locale for this request.

    Returns current locale for this request.

    returns

    current locale

    Attributes
    protected
    Definition Classes
    LocaleFeature
  58. def defaultAcceptedFormats: List[Symbol]

    Definition Classes
    ApiFormats
  59. val defaultCharacterEncoding: String

    Attributes
    protected
    Definition Classes
    SkinnyMicroBase
  60. def defaultFormat: Symbol

    Definition Classes
    ApiFormats
  61. def defaultIndexName: String

    Attributes
    protected
    Definition Classes
    ScalateSupport
  62. def defaultLayoutPath: Option[String]

    Attributes
    protected
    Definition Classes
    ScalateSupport
  63. def defaultLocale: Option[Locale]

    Returns default locale.

    Returns default locale.

    Attributes
    protected
    Definition Classes
    LocaleFeature
  64. def defaultObjectMapper: ObjectMapper

    Definition Classes
    JSONStringOps
  65. implicit def defaultStringToSeq[T](implicit elementConverter: micro.implicits.TypeConverter[String, T], mf: Manifest[T]): micro.implicits.TypeConverter[String, Seq[T]]

    Definition Classes
    DefaultImplicits
  66. def defaultTemplateFormat: String

    Attributes
    protected
    Definition Classes
    ScalateSupport
  67. def defaultTemplatePath: List[String]

    Overrides to make the template path simpler.

    Overrides to make the template path simpler.

    returns

    paths

    Attributes
    protected
    Definition Classes
    ScalateTemplateEngineFeature → ScalateSupport
  68. def detectTooManyErrorFilterRegistrationAsAnErrorAtSkinnyMicroBase: Boolean

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

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

    Definition Classes
    ServletApiImplicits
  71. implicit def enrichServletContext(servletContext: javax.servlet.ServletContext): RichServletContext

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

    Definition Classes
    ServletApiImplicits
  73. final def eq(arg0: AnyRef): Boolean

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

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

    Definition Classes
    ErrorHandlerAccessor
  76. def errorMessages(implicit ctx: SkinnyContext = context): Seq[String]

    Returns errorMessages in the RequestScope.

    Returns errorMessages in the RequestScope.

    Definition Classes
    RequestScopeFeature
  77. def executeRoutes(request: HttpServletRequest, response: HttpServletResponse): Unit

    Attributes
    protected
    Definition Classes
    SkinnyMicroBase
  78. implicit def executionContext: ExecutionContext

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

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

    Attributes
    protected
    Definition Classes
    ScalateSupport
  81. def flash(key: String)(implicit ctx: SkinnyContext): Any

    Definition Classes
    FlashMapSupport
  82. def flash(implicit ctx: SkinnyContext): FlashMap

    Definition Classes
    FlashMapSupport
  83. def flashMapSetSession(f: FlashMap)(implicit ctx: SkinnyContext): Unit

    Definition Classes
    FlashMapSupport
  84. def formMultiParams(implicit ctx: SkinnyContext): micro.MultiParams

    Definition Classes
    FormParamsAccessor
  85. def formParams(implicit ctx: SkinnyContext): micro.Params

    Definition Classes
    FormParamsAccessor
  86. def format(implicit ctx: SkinnyContext): String

    Definition Classes
    ApiFormats
  87. def formatForMimeTypes(mimeTypes: String*): Option[String]

    Attributes
    protected
    Definition Classes
    ApiFormats
  88. def format_=(formatValue: String)(implicit ctx: SkinnyContext): Unit

    Definition Classes
    RequestFormatAccessor
  89. val formats: Map[String, String]

    Definition Classes
    ApiFormats
  90. def fromJSONString[A](json: String, underscoreKeys: Boolean, asIs: Boolean)(implicit mf: Manifest[A]): Try[A]

    Definition Classes
    JSONStringOps
  91. def fromJSONStringAsIs[A](json: String)(implicit mf: Manifest[A]): Try[A]

    Definition Classes
    JSONStringOps
  92. def fromJSONStringToJValue(json: String, underscoreKeys: Boolean, asIs: Boolean): Try[JValue]

    Definition Classes
    JSONStringOps
  93. def fromJValue[T](json: JValue)(implicit reader: Reader[T]): T

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

    Definition Classes
    UrlGenerator
  95. def generateWelcomePageIfAbsent(path: String)(implicit format: Format = Format.HTML): Unit

    Generates a sample page for absent page.

    Generates a sample page for absent page.

    Attributes
    protected
    Definition Classes
    ScalateTemplateEngineFeature
  96. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  97. def getFromRequestScope[A](key: String)(implicit ctx: SkinnyContext = context): Option[A]

    Fetches value from request scope.

    Fetches value from request scope.

    A

    type

    key

    key

    returns

    value if exists

    Definition Classes
    RequestScopeFeature
  98. def halt(result: ActionResult): Nothing

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

    Definition Classes
    HaltPassControl
  100. def haltWithBody[A](httpStatus: Int)(implicit ctx: SkinnyContext, format: Format = Format.HTML): A

    Halts with body which responds to the specified format.

    Halts with body which responds to the specified format.

    A

    response type

    httpStatus

    http status

    format

    format (HTML,JSON,XML...)

    returns

    body if possible

    Attributes
    protected
    Definition Classes
    TemplateEngineFeatureSkinnyControllerCommonBase
  101. def handle(req: HttpServletRequest, res: HttpServletResponse): Unit

    Definition Classes
    ScalateSupport → SkinnyMicroBase → Handler
  102. def handleForgery()(implicit ctx: SkinnyContext): Unit

    Overrides to skip execution when the current request matches excluded patterns.

    Overrides to skip execution when the current request matches excluded patterns.

    Definition Classes
    AsyncCSRFProtectionFeature → AsyncCSRFTokenSupport
  103. def handleForgeryIfDetected(): Nothing

    Handles when CSRF is detected.

    Handles when CSRF is detected.

    Definition Classes
    AsyncSkinnyWebPageControllerFeaturesAsyncCSRFProtectionFeature
  104. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  105. def inferFromFormats: ContentTypeInferrer

    Attributes
    protected
    Definition Classes
    ApiFormats
  106. def infoTimeLoggingEnabled: Boolean

    Attributes
    protected
    Definition Classes
    TimeLogging
  107. def initParameter(name: String): Option[String]

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

    Definition Classes
    ScalateSupport → ServletContextAccessor → Initializable
  109. def initializeRequestScopeAttributes(implicit ctx: SkinnyContext = context): Any

    Definition Classes
    RequestScopeFeature
  110. def invoke(matchedRoute: MatchedRoute): Option[Any]

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

    Attributes
    protected
    Definition Classes
    SkinnyMicroBase
  112. def isDevelopment(): Boolean

    Attributes
    protected
    Definition Classes
    EnvAccessor
  113. def isForged(implicit ctx: SkinnyContext): Boolean

    Attributes
    protected
    Definition Classes
    AsyncCSRFTokenSupport
  114. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  115. def isProduction(): Boolean

    Attributes
    protected
    Definition Classes
    EnvAccessor
  116. def isScalateErrorPageEnabled: Boolean

    To deal with exceptions.

    To deal with exceptions.

    http://www.scalatra.org/guides/views/scalate.html#toc_303

    Definition Classes
    ScalateTemplateEngineFeature → ScalateSupport
  117. def isStaging(): Boolean

    Attributes
    protected
    Definition Classes
    EnvAccessor
  118. def isTest(): Boolean

    Attributes
    protected
    Definition Classes
    EnvAccessor
  119. def jade(path: String, attributes: (String, Any)*)(implicit ctx: SkinnyContext): String

    Attributes
    protected
    Definition Classes
    ScalateSupport
  120. implicit val jsonFormats: Formats

    Attributes
    protected
    Definition Classes
    JSONStringOps
  121. def keyAndErrorMessages(implicit ctx: SkinnyContext = context): Map[String, Seq[String]]

    Returns keyAndErrorMessages in the RequestScope.

    Returns keyAndErrorMessages in the RequestScope.

    Definition Classes
    RequestScopeFeature
  122. def layout(path: String)(implicit ctx: SkinnyContext): ScalateTemplateEngineFeature

    Replaces layout template for this action.

    Replaces layout template for this action.

    path

    the layout template path, including extension, e.g. "custom.jade"

    Definition Classes
    ScalateTemplateEngineFeature
  123. def layoutTemplate(path: String, attributes: (String, Any)*)(implicit ctx: SkinnyContext): String

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

    Attributes
    protected
    Definition Classes
    ScalateSupport
  125. def logger: Logger

    Attributes
    protected
    Definition Classes
    LoggerProvider
  126. def loggerName: String

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

    Definition Classes
    LowestPriorityImplicits
  128. def maxDurationToAwaitAsyncFilters: Duration

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

    Definition Classes
    SkinnyMicroBase
  130. val mimeTypes: Map[String, String]

    Definition Classes
    ApiFormats
  131. def mount(ctx: javax.servlet.ServletContext): Unit

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

    Definition Classes
    ParamsAccessor
  133. def multiParams(implicit ctx: SkinnyContext): micro.MultiParams

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

    Attributes
    protected
    Definition Classes
    ScalateSupport
  135. final def ne(arg0: AnyRef): Boolean

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

    Definition Classes
    SkinnyMicroBase
  137. final def notify(): Unit

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

    Definition Classes
    AnyRef
  139. def params(implicit ctx: SkinnyContext): micro.Params

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

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

    Definition Classes
    ParamsAccessor
  142. def pass(): Nothing

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

    Attributes
    protected
    Definition Classes
    RouteMatcherImplicits
  144. def preferredScalateExtension: String

    The Scalate template type that is searched for first.

    The Scalate template type that is searched for first.

    Definition Classes
    ScalateTemplateEngineFeature
  145. def prefixForJSONVulnerabilityProtection: String

    Attributes
    protected
    Definition Classes
    JSONStringOps
  146. def prepareCsrfToken()(implicit ctx: SkinnyContext): Any

    Attributes
    protected
    Definition Classes
    AsyncCSRFTokenSupport
  147. def protectFromForgery(only: Seq[Symbol] = Nil, except: Seq[Symbol] = Nil): Unit

    Declarative activation of CSRF protection.

    Declarative activation of CSRF protection. Of course, highly inspired by Ruby on Rails.

    only

    should be applied only for these action methods

    except

    should not be applied for these action methods

    Definition Classes
    AsyncCSRFProtectionFeature
  148. def queryMultiParams(implicit ctx: SkinnyContext): micro.MultiParams

    Definition Classes
    QueryParamsAccessor
  149. def queryParams(implicit ctx: SkinnyContext): micro.Params

    Definition Classes
    QueryParamsAccessor
  150. def redirect(uri: String)(implicit ctx: SkinnyContext): ActionResult

    Definition Classes
    RedirectionDsl
  151. def redirect301(location: String, headers: Map[String, String])(implicit ctx: SkinnyContext): ActionResult

    Definition Classes
    RedirectionDsl
  152. def redirect302(location: String, headers: Map[String, String])(implicit ctx: SkinnyContext): ActionResult

    Definition Classes
    RedirectionDsl
  153. def redirect303(location: String, headers: Map[String, String])(implicit ctx: SkinnyContext): ActionResult

    Definition Classes
    RedirectionDsl
  154. implicit def regex2RouteMatcher(regex: Regex): RouteMatcher

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

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

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

    Attributes
    protected
    Definition Classes
    SkinnyMicroBase
  158. def render(path: String)(implicit ctx: SkinnyContext, format: Format = Format.HTML): String

    Renders body with template.

    Renders body with template.

    path

    path name

    format

    format (HTML,JSON,XML...)

    returns

    body

    Definition Classes
    TemplateEngineFeature
  159. def renderResponse(actionResult: Any)(implicit ctx: SkinnyContext): Unit

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

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

    Attributes
    protected
    Definition Classes
    ScalateSupport → SkinnyMicroBase
  162. def renderWithFormat(entity: Any)(implicit format: micro.Format = Format.HTML): String

    Renders body which responds to the specified format (JSON, XML) if possible.

    Renders body which responds to the specified format (JSON, XML) if possible.

    entity

    entity

    format

    format (HTML,JSON,XML...)

    returns

    body if possible

    Attributes
    protected
    Definition Classes
    SkinnyControllerCommonBase
  163. def renderWithTemplate(path: String)(implicit ctx: SkinnyContext, format: Format = Format.HTML): String

    Renders body with template.

    Renders body with template.

    path

    path name

    format

    format (HTML,JSON,XML...)

    returns

    true/false

    Attributes
    protected
    Definition Classes
    ScalateTemplateEngineFeatureTemplateEngineFeature
  164. def request(implicit ctx: SkinnyContext): HttpServletRequest

    Definition Classes
    SkinnyContextInitializer
  165. def requestFormat(implicit ctx: SkinnyContext): String

    Definition Classes
    ApiFormats
  166. def requestScope(keyAndValues: Seq[(String, Any)])(implicit ctx: SkinnyContext): RequestScopeFeature

    Set attributes to request scope.

    Set attributes to request scope.

    keyAndValues

    collection of key and value.

    returns

    self

    Definition Classes
    RequestScopeFeature
  167. def requestScope(keyAndValue: (String, Any))(implicit ctx: SkinnyContext): RequestScopeFeature

    Set attribute to request scope.

    Set attribute to request scope.

    keyAndValue

    key and value

    returns

    self

    Definition Classes
    RequestScopeFeature
  168. def requestScope(implicit ctx: SkinnyContext = context): Map[String, Any]

    Returns whole request scope attributes.

    Returns whole request scope attributes.

    returns

    whole attributes

    Definition Classes
    RequestScopeFeature
  169. def respondTo: Seq[micro.Format]

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

    Definition Classes
    SkinnyContextInitializer
  171. def responseAsJSON(entity: Any, charset: Option[String], prettify: Boolean, underscoreKeys: Boolean)(implicit ctx: SkinnyContext): String

    Attributes
    protected
    Definition Classes
    JSONSupport
  172. lazy val routes: RouteRegistry

    Definition Classes
    RouteRegistryAccessor
  173. implicit def safe[S, T](f: (S) ⇒ T): micro.implicits.TypeConverter[S, T]

    Definition Classes
    TypeConverterSupport
  174. implicit def safeOption[S, T](f: (S) ⇒ Option[T]): micro.implicits.TypeConverter[S, T]

    Definition Classes
    TypeConverterSupport
  175. def scalateExtensions: List[String]

    Scalate extension names.

    Scalate extension names. Skinny will search for templates in this order.

    If you'd like to change the search order, or you want to restrict the search to fewer template languages, override this attribute.

    Note that removing unnecessary items from this list will improve the performance of the template engine.

    Definition Classes
    ScalateTemplateEngineFeature
  176. def scalateRenderContextNumberFormat: DecimalFormat

    Creates a DecimalFormat instance to be use by default.

    Creates a DecimalFormat instance to be use by default.

    Definition Classes
    ScalateTemplateEngineFeature
  177. def scaml(path: String, attributes: (String, Any)*)(implicit ctx: SkinnyContext): String

    Attributes
    protected
    Definition Classes
    ScalateSupport
  178. def sensitiveParameterNames: Seq[String]

    Returns registered sensitive parameter names.

    Returns registered sensitive parameter names.

    Attributes
    protected
    Definition Classes
    SensitiveParametersFeature
  179. implicit def seqHead[T](implicit elementConverter: micro.implicits.TypeConverter[String, T], mf: Manifest[T]): micro.implicits.TypeConverter[Seq[String], T]

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

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

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

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

    Definition Classes
    ServletContextAccessor
  184. implicit def servletContext: javax.servlet.ServletContext

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

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

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

    Definition Classes
    SessionImplicits
  188. def sessionLocaleKey: String

    Session key to store current locale string.

    Session key to store current locale string.

    returns

    key

    Definition Classes
    LocaleFeature
  189. def sessionOption(implicit ctx: SkinnyContext): Option[HttpSession]

    Definition Classes
    SessionImplicits
  190. def set(keyAndValues: Seq[(String, Any)])(implicit ctx: SkinnyContext): RequestScopeFeature

    Set attributes to request scope.

    Set attributes to request scope.

    Definition Classes
    RequestScopeFeature
  191. def set(keyAndValue: (String, Any))(implicit ctx: SkinnyContext): RequestScopeFeature

    Set attribute to request scope.

    Set attribute to request scope.

    Definition Classes
    RequestScopeFeature
  192. def setAsParams(model: Any)(implicit ctx: SkinnyContext = context): Unit

    Set params which is generated from a model object using Java reflection APIs.

    Set params which is generated from a model object using Java reflection APIs.

    model

    model instance

    Definition Classes
    RequestScopeFeature
  193. def setContentTypeIfAbsent()(implicit format: micro.Format = Format.HTML): Unit

    Set Content-Type for the format if absent.

    Set Content-Type for the format if absent.

    format

    format

    Attributes
    protected
    Definition Classes
    SkinnyControllerCommonBase
  194. def setCurrentLocale(locale: String)(implicit ctx: SkinnyContext): Unit

    Set current locale.

    Set current locale.

    locale

    locale string

    Attributes
    protected
    Definition Classes
    LocaleFeature
  195. def setI18n(implicit ctx: SkinnyContext = context): RequestScopeFeature

    Set {{skinny.

    Set {{skinny.I18n}} object for the current request to request scope.

    ctx

    context

    returns

    self

    Definition Classes
    RequestScopeFeature
  196. def setMultiparams[S](matchedRoute: Option[MatchedRoute], originalParams: micro.MultiParams)(implicit ctx: SkinnyContext): Unit

    Attributes
    protected
    Definition Classes
    SkinnyMicroBase
  197. def setParams(implicit ctx: SkinnyContext = context): Unit

    Set params to request scope.

    Set params to request scope.

    Definition Classes
    RequestScopeFeature
  198. def setParamsToRequestScope(implicit ctx: SkinnyContext = context): Unit

    Set params to request scope.

    Set params to request scope.

    Definition Classes
    RequestScopeFeature
  199. def setRequestCharacterEncodingAsDefaultIfAbsent(request: HttpServletRequest): Unit

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

    Definition Classes
    ScalateSupport → Initializable
  201. def skinnyContext(implicit ctx: javax.servlet.ServletContext): SkinnyContext

    Definition Classes
    SkinnyContextInitializer
  202. def skinnyEnv: Option[String]

    Attributes
    protected
    Definition Classes
    EnvAccessor
  203. lazy val skinnyErrorFilters: TrieMap[RenderingRequired, Seq[ErrorHandler]]

    Registered error handlers.

    Registered error handlers.

    Attributes
    protected
    Definition Classes
    SkinnyFilterActivation
  204. implicit def skinnyValidatorSafe[S, T](f: (S) ⇒ T): ParamValueTypeConverter[S, T]

    Definition Classes
    ParametersGetAsImplicits
  205. implicit def skinnyValidatorSafeOption[S, T](f: (S) ⇒ Option[T]): ParamValueTypeConverter[S, T]

    Definition Classes
    ParametersGetAsImplicits
  206. implicit def skinnyValidatorSeqHead[T](implicit elementConverter: ParamValueTypeConverter[String, T], mf: Manifest[T]): ParamValueTypeConverter[Seq[String], T]

    Definition Classes
    ParametersGetAsImplicits
  207. implicit def skinnyValidatorSeqToSeq[T](implicit elementConverter: ParamValueTypeConverter[String, T], mf: Manifest[T]): ParamValueTypeConverter[Seq[String], Seq[T]]

    Definition Classes
    ParametersGetAsImplicits
  208. implicit val skinnyValidatorStringToBoolean: ParamValueTypeConverter[String, Boolean]

    Definition Classes
    ParametersGetAsImplicits
  209. implicit val skinnyValidatorStringToByte: ParamValueTypeConverter[String, Byte]

    Definition Classes
    ParametersGetAsImplicits
  210. def skinnyValidatorStringToDate(format: ⇒ String): ParamValueTypeConverter[String, Date]

    Definition Classes
    ParametersGetAsImplicits
  211. def skinnyValidatorStringToDateFormat(format: ⇒ DateFormat): ParamValueTypeConverter[String, Date]

    Definition Classes
    ParametersGetAsImplicits
  212. implicit val skinnyValidatorStringToDouble: ParamValueTypeConverter[String, Double]

    Definition Classes
    ParametersGetAsImplicits
  213. implicit val skinnyValidatorStringToFloat: ParamValueTypeConverter[String, Float]

    Definition Classes
    ParametersGetAsImplicits
  214. implicit val skinnyValidatorStringToInt: ParamValueTypeConverter[String, Int]

    Definition Classes
    ParametersGetAsImplicits
  215. implicit val skinnyValidatorStringToLong: ParamValueTypeConverter[String, Long]

    Definition Classes
    ParametersGetAsImplicits
  216. implicit val skinnyValidatorStringToSelf: ParamValueTypeConverter[String, String]

    Definition Classes
    ParametersGetAsImplicits
  217. def skinnyValidatorStringToSeq[T](elementConverter: ParamValueTypeConverter[String, T], separator: String)(implicit arg0: Manifest[T]): ParamValueTypeConverter[String, Seq[T]]

    Definition Classes
    ParametersGetAsImplicits
  218. implicit val skinnyValidatorStringToShort: ParamValueTypeConverter[String, Short]

    Definition Classes
    ParametersGetAsImplicits
  219. implicit def skinnyValidator_defaultStringToSeq[T](implicit elementConverter: ParamValueTypeConverter[String, T], mf: Manifest[T]): ParamValueTypeConverter[String, Seq[T]]

    Definition Classes
    ParametersGetAsImplicits
  220. def skipHaltingWhenRedirection: Boolean

    Attributes
    protected
    Definition Classes
    RedirectionDsl
  221. def ssp(path: String, attributes: (String, Any)*)(implicit ctx: SkinnyContext): String

    Attributes
    protected
    Definition Classes
    ScalateSupport
  222. def stackTraceDepthForTimeLogging: Int

    Attributes
    protected
    Definition Classes
    TimeLogging
  223. def status(implicit ctx: SkinnyContext): Int

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

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

    Attributes
    protected
    Definition Classes
    RouteMatcherImplicits
  226. implicit val stringToBoolean: micro.implicits.TypeConverter[String, Boolean]

    Definition Classes
    DefaultImplicits
  227. implicit val stringToByte: micro.implicits.TypeConverter[String, Byte]

    Definition Classes
    DefaultImplicits
  228. def stringToDate(format: ⇒ String): micro.implicits.TypeConverter[String, Date]

    Definition Classes
    DefaultImplicits
  229. def stringToDateFormat(format: ⇒ DateFormat): micro.implicits.TypeConverter[String, Date]

    Definition Classes
    DefaultImplicits
  230. implicit val stringToDouble: micro.implicits.TypeConverter[String, Double]

    Definition Classes
    DefaultImplicits
  231. implicit val stringToFloat: micro.implicits.TypeConverter[String, Float]

    Definition Classes
    DefaultImplicits
  232. implicit val stringToInt: micro.implicits.TypeConverter[String, Int]

    Definition Classes
    DefaultImplicits
  233. implicit val stringToLong: micro.implicits.TypeConverter[String, Long]

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

    Definition Classes
    RicherStringImplicits
  235. implicit val stringToSelf: micro.implicits.TypeConverter[String, String]

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

    Definition Classes
    DefaultImplicits
  237. implicit val stringToShort: micro.implicits.TypeConverter[String, Short]

    Definition Classes
    DefaultImplicits
  238. def sweepUnusedFlashEntries(req: HttpServletRequest): Boolean

    Attributes
    protected
    Definition Classes
    FlashMapSupport
  239. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Attributes
    protected
    Definition Classes
    ScalateSupport
  241. def templateAttributes(implicit ctx: SkinnyContext): Map[String, Any]

    Attributes
    protected
    Definition Classes
    ScalateSupport
  242. var templateEngine: TemplateEngine

    Attributes
    protected[this]
    Definition Classes
    ScalateSupport
  243. def templateExists(path: String)(implicit format: Format = Format.HTML): Boolean

    Predicates the template path is available.

    Predicates the template path is available.

    path

    path name

    format

    format (HTML,JSON,XML...)

    returns

    true/false

    Attributes
    protected
    Definition Classes
    ScalateTemplateEngineFeatureTemplateEngineFeature
  244. def templatePaths(path: String)(implicit format: Format = Format.HTML): List[String]

    Returns the actual template path for the name.

    Returns the actual template path for the name.

    path

    path name

    format

    format (HTML,JSON,XML...)

    returns

    actual path

    Attributes
    protected
    Definition Classes
    ScalateTemplateEngineFeatureTemplateEngineFeature
  245. def toJSON(v: Any): JValue

    Definition Classes
    JSONStringOps
  246. def toJSONString(v: Any, underscoreKeys: Boolean): String

    Definition Classes
    JSONStringOps
  247. def toJSONStringAsIs(v: Any): String

    Definition Classes
    JSONStringOps
  248. def toPrettyJSONString(v: Any, underscoreKeys: Boolean): String

    Definition Classes
    JSONStringOps
  249. def toPrettyJSONStringAsIs(v: Any): String

    Definition Classes
    JSONStringOps
  250. def toSnakeCase(s: String): String

    Converts string value to snake_case'd value.

    Converts string value to snake_case'd value.

    s

    string value

    returns

    snake_case'd value

    Attributes
    protected
    Definition Classes
    SkinnyControllerCommonBase
  251. def toString(): String

    Definition Classes
    AnyRef → Any
  252. def toTemplatePath(path: String, format: Format, ext: String): String

    Attributes
    protected
    Definition Classes
    ScalateTemplateEngineFeature
  253. implicit def toTypedMultiParams(params: micro.MultiParams): TypedMultiParams

    Definition Classes
    SkinnyMicroParamsImplicits
  254. implicit def toTypedParams(params: micro.Params): TypedParams

    Definition Classes
    SkinnyMicroParamsImplicits
  255. def unstableAccessValidationEnabled: Boolean

    Attributes
    protected
    Definition Classes
    UnstableAccessValidationConfig
  256. def url(route: Route, params: Map[String, String], splats: Iterable[String])(implicit ctx: SkinnyContext): String

    Definition Classes
    UrlGeneratorSupport
    Annotations
    @throws( classOf[java.lang.Exception] ) @throws( ... )
  257. def url(route: Route, splat: String, moreSplats: String*)(implicit ctx: SkinnyContext): String

    Definition Classes
    UrlGeneratorSupport
    Annotations
    @throws( classOf[java.lang.Exception] ) @throws( ... )
  258. def url(route: Route, params: (String, String)*)(implicit ctx: SkinnyContext): String

    Definition Classes
    UrlGeneratorSupport
    Annotations
    @throws( classOf[java.lang.Exception] ) @throws( ... )
  259. def url(path: String, params: Iterable[(String, Any)], includeContextPath: Boolean, includeServletPath: Boolean, absolutize: Boolean)(implicit ctx: SkinnyContext): String

    Definition Classes
    UrlGenerator
  260. def useJSONVulnerabilityProtection: Boolean

    Attributes
    protected
    Definition Classes
    JSONStringOps
  261. def useMostlyStableHttpSession: Boolean

    Attributes
    protected
    Definition Classes
    UnstableAccessValidationConfig
  262. def useSnakeCasedParamKeys: Boolean

    Defines use snake_case'd keys.

    Defines use snake_case'd keys.

    returns

    true if use snake_case keys (default: false)

    Attributes
    protected
    Definition Classes
    SnakeCasedParamKeysFeature
  263. def useUnderscoreKeysForJSON: Boolean

    Attributes
    protected
    Definition Classes
    JSONStringOps
  264. def validation(params: controller.Params, validations: NewValidation*)(implicit locale: Locale = ...): MapValidator

    Creates new validation form.

    Creates new validation form.

    params

    params

    validations

    validations

    locale

    current locale

    returns

    validator

    Definition Classes
    ValidationFeature
  265. def validationWithParams(validations: NewValidation*)(implicit locale: Locale = ...): MapValidator

    Creates new validation form.

    Creates new validation form.

    validations

    validations

    locale

    current locale

    returns

    validator

    Definition Classes
    ValidationFeature
  266. def validationWithParamsAndPrefix(prefix: String, params: controller.Params, validations: NewValidation*)(implicit locale: Locale = ...): MapValidator

    Creates new validation form.

    Creates new validation form.

    prefix

    key prefix for error message

    params

    params

    validations

    validations

    locale

    current locale

    returns

    validator

    Definition Classes
    ValidationFeature
  267. def validationWithPrefix(params: controller.Params, prefix: String, validations: NewValidation*)(implicit ctx: SkinnyContext): MapValidator

    Creates new validation form.

    Creates new validation form.

    params

    params

    prefix

    key prefix for error message

    validations

    validations

    returns

    validator

    Definition Classes
    ValidationFeature
  268. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  271. def warnElapsedTime[A](millis: Long, additionalLines: ⇒ Seq[String])(action: ⇒ A): A

    Definition Classes
    TimeLogging
  272. def warnElapsedTimeWithRequest[A](millis: Long, additionalLines: Seq[String] = Nil)(action: ⇒ A)(implicit context: SkinnyContext): A

    Definition Classes
    TimeLoggingFeature
  273. def withFormat[A](format: micro.Format)(action: ⇒ A): A

    Provides code block with format.

    Provides code block with format. If absent, halt as status 406.

    A

    response type

    format

    format

    action

    action

    returns

    result

    Attributes
    protected
    Definition Classes
    SkinnyControllerCommonBase
  274. def withOutputStream(f: (ServletOutputStream) ⇒ Unit)(implicit ctx: micro.Context): Unit

    Definition Classes
    ChunkedResponseSupport
  275. def withRequest[A](request: HttpServletRequest)(f: ⇒ A): A

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

    Attributes
    protected
    Definition Classes
    SkinnyContextInitializer
  277. def withResponse[A](response: HttpServletResponse)(f: ⇒ A): A

    Attributes
    protected
    Definition Classes
    SkinnyContextInitializer
  278. def withRouteMultiParams[S](matchedRoute: Option[MatchedRoute])(thunk: ⇒ S): S

    Attributes
    protected
    Definition Classes
    ApiFormats → SkinnyMicroBase
  279. def writeChunk(chunk: Array[Byte])(implicit ctx: micro.Context): Unit

    Definition Classes
    ChunkedResponseSupport
  280. lazy val xFrameOptionsPolicy: String

  281. def xmlItemName: String

    Attributes
    protected
    Definition Classes
    SkinnyControllerCommonBase
  282. def xmlRootName: String

    Attributes
    protected
    Definition Classes
    SkinnyControllerCommonBase

Deprecated Value Members

  1. def responseFormat(implicit ctx: SkinnyContext): String

    Definition Classes
    ApiFormats
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) format now means the same as responseFormat, responseFormat will be removed eventually

Inherited from AsyncCSRFTokenSupport

Inherited from ScalateSupport

Inherited from TemplateEngineFeature

Inherited from FlashFeature

Inherited from FlashMapSupport

Inherited from AsyncBeforeAfterDsl

Inherited from SkinnyFilter

Inherited from SkinnyFilterActivation

Inherited from ParamsPermitImplicits

Inherited from ParametersGetAsImplicits

Inherited from RoutesAsImplicits

Inherited from TimeLoggingFeature

Inherited from TimeLogging

Inherited from ValidationFeature

Inherited from JSONFeature

Inherited from JSONSupport

Inherited from JSONStringOps

Inherited from ChunkedResponseFeature

Inherited from ChunkedResponseSupport

Inherited from RequestScopeFeature

Inherited from LocaleFeature

Inherited from BeforeAfterDsl

Inherited from ActionDefinitionFeature

Inherited from ExplicitRedirectFeature

Inherited from UrlGeneratorSupport

Inherited from FormParamsFeature

Inherited from QueryParamsFeature

Inherited from EnvFeature

Inherited from ApiFormats

Inherited from SkinnyMicroBase

Inherited from SessionImplicits

Inherited from DefaultImplicits

Inherited from LowPriorityImplicits

Inherited from LowestPriorityImplicits

Inherited from micro.implicits.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 FormParamsAccessor

Inherited from QueryParamsAccessor

Inherited from ParamsAccessor

Inherited from EnvAccessor

Inherited from ErrorHandlerAccessor

Inherited from RedirectionDsl

Inherited from AsyncSupported

Inherited from Handler

Inherited from logging.LoggerProvider

Inherited from ServletContextAccessor

Inherited from RicherStringImplicits

Inherited from ServletApiImplicits

Inherited from RouteRegistryAccessor

Inherited from UnstableAccessValidationConfig

Inherited from SkinnyContextInitializer

Inherited from Initializable

Inherited from AnyRef

Inherited from Any

Ungrouped