Trait

skinny.controller

SkinnyWebPageControllerFeatures

Related Doc: package controller

Permalink

trait SkinnyWebPageControllerFeatures extends SkinnyControllerCommonBase with FlashFeature with TemplateEngineFeature with ScalateTemplateEngineFeature with CSRFProtectionFeature with XXSSProtectionHeaderFeature with XFrameOptionsHeaderFeature

Additional web pages specific features for SkinnyControllers.

Linear Supertypes
XFrameOptionsHeaderFeature, XXSSProtectionHeaderFeature, CSRFProtectionFeature, CSRFTokenSupport, ScalateTemplateEngineFeature, ScalateSupport, TemplateEngineFeature, FlashFeature, FlashMapSupport, SkinnyControllerCommonBase, SkinnyFilterActivation, ParamsPermitImplicits, ParametersGetAsImplicits, RoutesAsImplicits, XContentTypeOptionsNosniffHeaderFeature, ThreadLocalRequestFeature, TimeLoggingFeature, SensitiveParametersFeature, TimeLogging, ValidationFeature, JSONFeature, JSONSupport, JSONStringOps, BeforeAfterActionFeature, 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, CoreHandler, Handler, logging.LoggerProvider, ServletContextAccessor, RicherStringImplicits, ServletApiImplicits, RouteRegistryAccessor, UnstableAccessValidationConfig, SkinnyContextInitializer, Initializable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SkinnyWebPageControllerFeatures
  2. XFrameOptionsHeaderFeature
  3. XXSSProtectionHeaderFeature
  4. CSRFProtectionFeature
  5. CSRFTokenSupport
  6. ScalateTemplateEngineFeature
  7. ScalateSupport
  8. TemplateEngineFeature
  9. FlashFeature
  10. FlashMapSupport
  11. SkinnyControllerCommonBase
  12. SkinnyFilterActivation
  13. ParamsPermitImplicits
  14. ParametersGetAsImplicits
  15. RoutesAsImplicits
  16. XContentTypeOptionsNosniffHeaderFeature
  17. ThreadLocalRequestFeature
  18. TimeLoggingFeature
  19. SensitiveParametersFeature
  20. TimeLogging
  21. ValidationFeature
  22. JSONFeature
  23. JSONSupport
  24. JSONStringOps
  25. BeforeAfterActionFeature
  26. ChunkedResponseFeature
  27. ChunkedResponseSupport
  28. RequestScopeFeature
  29. LocaleFeature
  30. SnakeCasedParamKeysFeature
  31. BeforeAfterDsl
  32. ActionDefinitionFeature
  33. ExplicitRedirectFeature
  34. UrlGeneratorSupport
  35. FormParamsFeature
  36. QueryParamsFeature
  37. EnvFeature
  38. ApiFormats
  39. SkinnyMicroBase
  40. SessionImplicits
  41. DefaultImplicits
  42. LowPriorityImplicits
  43. LowestPriorityImplicits
  44. TypeConverterSupport
  45. SkinnyMicroParamsImplicits
  46. CookiesImplicits
  47. RouteMatcherImplicits
  48. HaltPassControl
  49. UrlGenerator
  50. ResponseStatusAccessor
  51. ResponseContentTypeAccessor
  52. RequestFormatAccessor
  53. FormParamsAccessor
  54. QueryParamsAccessor
  55. ParamsAccessor
  56. EnvAccessor
  57. ErrorHandlerAccessor
  58. RedirectionDsl
  59. AsyncSupported
  60. CoreHandler
  61. Handler
  62. LoggerProvider
  63. ServletContextAccessor
  64. RicherStringImplicits
  65. ServletApiImplicits
  66. RouteRegistryAccessor
  67. UnstableAccessValidationConfig
  68. SkinnyContextInitializer
  69. Initializable
  70. AnyRef
  71. 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. sealed trait RenderingRequired extends AnyRef

    Permalink
    Definition Classes
    SkinnyFilterActivation
  4. trait SkinnyMicroTemplateEngine extends AnyRef

    Permalink
    Definition Classes
    ScalateSupport
  5. sealed class TypedMultiParams extends AnyRef

    Permalink
    Definition Classes
    SkinnyMicroParamsImplicits
  6. 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. object WithRendering extends controller.feature.SkinnyControllerCommonBase.RenderingRequired with Product with Serializable

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

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

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

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

    Permalink

    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
  9. def addActionDefinition(actionDef: ActionDefinition): Unit

    Permalink

    Adds action definition

    Adds action definition

    actionDef

    action definition

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

    Permalink

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

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

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

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

    Permalink

    Add param to params in the request scope.

    Add param to params in the request scope.

    name

    name

    value

    value

    Definition Classes
    RequestScopeFeature
  13. def after(transformers: RouteTransformer*)(fun: ⇒ Any): Unit

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

    Permalink

    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
    BeforeAfterActionFeature
  15. def afterFilter(only: Seq[Symbol] = Nil, except: Seq[Symbol] = Nil)(action: ⇒ Any): Unit

    Permalink

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

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

    Definition Classes
    BeforeAfterActionFeature
  16. implicit val anyToBoolean: micro.implicits.TypeConverter[Any, Boolean]

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    JSONStringOps
  26. def before(transformers: RouteTransformer*)(fun: ⇒ Any): Unit

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

    Permalink

    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
    BeforeAfterActionFeature
  28. def beforeFilter(only: Seq[Symbol] = Nil, except: Seq[Symbol] = Nil)(action: ⇒ Any): Unit

    Permalink

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

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

    Definition Classes
    BeforeAfterActionFeature
  29. implicit def booleanBlock2RouteMatcher(block: ⇒ Boolean): RouteMatcher

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

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

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

    Permalink
    Definition Classes
    JSONStringOps
  33. var config: ConfigT

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

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

    Permalink
    Definition Classes
    ResponseContentTypeAccessor
  36. def contentTypeInferrer: ContentTypeInferrer

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

    Permalink
    Definition Classes
    ResponseContentTypeAccessor
  38. def context: SkinnyContext

    Permalink
    Definition Classes
    SkinnyContextInitializer
  39. def contextPath: String

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

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

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

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

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

    Permalink

    Creates skinny.I18n instance for current locale.

    Creates skinny.I18n instance for current locale.

    locale

    current locale

    returns

    i18n provider

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

    Permalink

    Creates a RenderContext instance for Skinny app.

    Creates a RenderContext instance for Skinny app.

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

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

    Permalink

    Creates TemplateEngine instance for Skinny app.

    Creates TemplateEngine instance for Skinny app.

    config

    configuration

    returns

    TemplateEngine instance

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

    Permalink

    Overrides Scalatra's default key name.

    Overrides Scalatra's default key name.

    Definition Classes
    CSRFProtectionFeature → CSRFTokenSupport
  49. def csrfToken(implicit context: SkinnyContext): String

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

    Permalink

    Returns action name for this request.

    Returns action name for this request.

    returns

    action name

    Definition Classes
    ActionDefinitionFeature
  51. def currentErrorHandler: ErrorHandler

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

    Permalink

    Returns current locale for this request.

    Returns current locale for this request.

    returns

    current locale

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

    Permalink
    Definition Classes
    ApiFormats
  54. val defaultCharacterEncoding: String

    Permalink
    Attributes
    protected
    Definition Classes
    CoreHandler
  55. def defaultFormat: Symbol

    Permalink
    Definition Classes
    ApiFormats
  56. def defaultIndexName: String

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

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

    Permalink

    Returns default locale.

    Returns default locale.

    Attributes
    protected
    Definition Classes
    LocaleFeature
  59. def defaultObjectMapper: ObjectMapper

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

    Permalink
    Definition Classes
    DefaultImplicits
  61. def defaultTemplateFormat: String

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

    Permalink

    Overrides to make the template path simpler.

    Overrides to make the template path simpler.

    returns

    paths

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

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

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

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

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

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

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

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

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

    Permalink

    Returns errorMessages in the RequestScope.

    Returns errorMessages in the RequestScope.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink

    Generates a sample page for absent page.

    Generates a sample page for absent page.

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

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

    Permalink

    Fetches value from request scope.

    Fetches value from request scope.

    A

    type

    key

    key

    returns

    value if exists

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

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

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

    Permalink

    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
  96. def handle(req: HttpServletRequest, res: HttpServletResponse): Unit

    Permalink
    Definition Classes
    ScalateSupport → CoreHandler → Handler
  97. def handleForgery(): Unit

    Permalink

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

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

    Definition Classes
    CSRFProtectionFeature → CSRFTokenSupport
  98. def handleForgeryIfDetected(): Nothing

    Permalink

    Handles when CSRF is detected.

    Handles when CSRF is detected.

    Definition Classes
    SkinnyWebPageControllerFeaturesCSRFProtectionFeature
  99. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  100. def inferFromFormats: ContentTypeInferrer

    Permalink
    Attributes
    protected
    Definition Classes
    ApiFormats
  101. def infoTimeLoggingEnabled: Boolean

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

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

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

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

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

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

    Permalink
    Attributes
    protected
    Definition Classes
    EnvAccessor
  108. def isForged: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    CSRFTokenSupport
  109. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  110. def isProduction(): Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    EnvAccessor
  111. def isScalateErrorPageEnabled: Boolean

    Permalink

    To deal with exceptions.

    To deal with exceptions.

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

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

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

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

    Permalink
    Attributes
    protected
    Definition Classes
    ScalateSupport
  115. implicit val jsonFormats: Formats

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

    Permalink

    Returns keyAndErrorMessages in the RequestScope.

    Returns keyAndErrorMessages in the RequestScope.

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

    Permalink

    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
  118. def layoutTemplate(path: String, attributes: (String, Any)*)(implicit ctx: SkinnyContext): String

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

    Permalink
    Attributes
    protected
    Definition Classes
    ScalateSupport
  120. def logger: Logger

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

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

    Permalink
    Definition Classes
    LowestPriorityImplicits
  123. def maxDurationToAwaitAsyncFilters: Duration

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Attributes
    protected
    Definition Classes
    RouteMatcherImplicits
  139. def preferredScalateExtension: String

    Permalink

    The Scalate template type that is searched for first.

    The Scalate template type that is searched for first.

    Definition Classes
    ScalateTemplateEngineFeature
  140. def prefixForJSONVulnerabilityProtection: String

    Permalink
    Attributes
    protected
    Definition Classes
    JSONStringOps
  141. def prepareCsrfToken(): Any

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

    Permalink

    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
    CSRFProtectionFeature
  143. def queryMultiParams(implicit ctx: SkinnyContext): micro.MultiParams

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

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

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

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

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

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

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

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

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

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

    Permalink

    Renders body with template.

    Renders body with template.

    path

    path name

    format

    format (HTML,JSON,XML...)

    returns

    body

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

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

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

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

    Permalink

    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
  158. def renderWithTemplate(path: String)(implicit ctx: SkinnyContext, format: Format = Format.HTML): String

    Permalink

    Renders body with template.

    Renders body with template.

    path

    path name

    format

    format (HTML,JSON,XML...)

    returns

    true/false

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

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

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

    Permalink

    Set attributes to request scope.

    Set attributes to request scope.

    keyAndValues

    collection of key and value.

    returns

    self

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

    Permalink

    Set attribute to request scope.

    Set attribute to request scope.

    keyAndValue

    key and value

    returns

    self

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

    Permalink

    Returns whole request scope attributes.

    Returns whole request scope attributes.

    returns

    whole attributes

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

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

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

    Permalink
    Attributes
    protected
    Definition Classes
    JSONSupport
  167. val routes: RouteRegistry

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

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

    Permalink
    Definition Classes
    TypeConverterSupport
  170. def scalateExtensions: List[String]

    Permalink

    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
  171. def scalateRenderContextNumberFormat: DecimalFormat

    Permalink

    Creates a DecimalFormat instance to be use by default.

    Creates a DecimalFormat instance to be use by default.

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

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

    Permalink

    Returns registered sensitive parameter names.

    Returns registered sensitive parameter names.

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

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

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

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

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

    Permalink
    Definition Classes
    ServletContextAccessor
  179. implicit def servletContext: javax.servlet.ServletContext

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

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

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

    Permalink
    Definition Classes
    SessionImplicits
  183. def sessionLocaleKey: String

    Permalink

    Session key to store current locale string.

    Session key to store current locale string.

    returns

    key

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

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

    Permalink

    Set attributes to request scope.

    Set attributes to request scope.

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

    Permalink

    Set attribute to request scope.

    Set attribute to request scope.

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

    Permalink

    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
  188. def setContentTypeIfAbsent()(implicit format: micro.Format = Format.HTML): Unit

    Permalink

    Set Content-Type for the format if absent.

    Set Content-Type for the format if absent.

    format

    format

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

    Permalink

    Set current locale.

    Set current locale.

    locale

    locale string

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

    Permalink

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

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

    ctx

    context

    returns

    self

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

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

    Permalink

    Set params to request scope.

    Set params to request scope.

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

    Permalink

    Set params to request scope.

    Set params to request scope.

    Definition Classes
    RequestScopeFeature
  194. def shutdown(): Unit

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

    Permalink
    Definition Classes
    SkinnyContextInitializer
  196. def skinnyEnv: Option[String]

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

    Permalink

    Registered error handlers.

    Registered error handlers.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    ParametersGetAsImplicits
  214. def skipHaltingWhenRedirection: Boolean

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

    Permalink
    Attributes
    protected
    Definition Classes
    ScalateSupport
  216. def stackTraceDepthForTimeLogging: Int

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Attributes
    protected
    Definition Classes
    ScalateSupport
  236. var templateEngine: TemplateEngine

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

    Permalink

    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
  238. def templatePaths(path: String)(implicit format: Format = Format.HTML): List[String]

    Permalink

    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
  239. def toJSON(v: Any): JValue

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

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

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

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

    Permalink
    Definition Classes
    JSONStringOps
  244. def toSnakeCase(s: String): String

    Permalink

    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
  245. def toString(): String

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

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

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

    Permalink
    Definition Classes
    SkinnyMicroParamsImplicits
  249. def unstableAccessValidationEnabled: Boolean

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

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

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

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

    Permalink
    Definition Classes
    UrlGenerator
  254. def useJSONVulnerabilityProtection: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    JSONStringOps
  255. def useSnakeCasedParamKeys: Boolean

    Permalink

    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
  256. def useUnderscoreKeysForJSON: Boolean

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

    Permalink

    Creates new validation form.

    Creates new validation form.

    params

    params

    validations

    validations

    locale

    current locale

    returns

    validator

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

    Permalink

    Creates new validation form.

    Creates new validation form.

    validations

    validations

    locale

    current locale

    returns

    validator

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

    Permalink

    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
  260. def validationWithPrefix(params: Params, prefix: String, validations: NewValidation*)(implicit ctx: SkinnyContext): MapValidator

    Permalink

    Creates new validation form.

    Creates new validation form.

    params

    params

    prefix

    key prefix for error message

    validations

    validations

    returns

    validator

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

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

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

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

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

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

    Permalink

    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
  267. def withOutputStream(f: (ServletOutputStream) ⇒ Unit)(implicit ctx: micro.Context): Unit

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

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

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

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

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

    Permalink
    Definition Classes
    ChunkedResponseSupport
  273. lazy val xFrameOptionsPolicy: String

    Permalink
    Definition Classes
    XFrameOptionsHeaderFeature
  274. def xmlItemName: String

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyControllerCommonBase
  275. def xmlRootName: String

    Permalink
    Attributes
    protected
    Definition Classes
    SkinnyControllerCommonBase

Deprecated Value Members

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

    Permalink
    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 CSRFProtectionFeature

Inherited from CSRFTokenSupport

Inherited from ScalateSupport

Inherited from TemplateEngineFeature

Inherited from FlashFeature

Inherited from FlashMapSupport

Inherited from SkinnyFilterActivation

Inherited from ParamsPermitImplicits

Inherited from ParametersGetAsImplicits

Inherited from RoutesAsImplicits

Inherited from ThreadLocalRequestFeature

Inherited from TimeLoggingFeature

Inherited from TimeLogging

Inherited from ValidationFeature

Inherited from JSONFeature

Inherited from JSONSupport

Inherited from JSONStringOps

Inherited from BeforeAfterActionFeature

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 CoreHandler

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