jp.co.bizreach

play2stub

package play2stub

Visibility
  1. Public
  2. All

Type Members

  1. trait AfterFilter extends AnyRef

    Do something after result is generated.

  2. trait BeforeFilter extends AnyRef

    Do something before the request is processed.

  3. class DefaultTemplateResolver extends TemplateResolver

  4. case class DynamicPart(name: String, constraint: String, encodeable: Boolean) extends PathPart with Positional with Product with Serializable

    Because of Positional, DynamicPart cannot be replaced by play.core.DynamicPart

  5. class FileLoader extends AnyRef

  6. class HandlebarsRenderer extends Controller with Renderer

    Render Handlebars template on top of Play2handlebars

  7. class JsonProcessor extends Results with Processor

    Processor to build json with parameters and static json files

  8. trait Logging[A] extends AnyRef

    Play logging trait

  9. trait ParamBuilder extends AnyRef

    Created by scova0731 on 10/19/14.

  10. class PathAndQueryStringParamBuilder extends ParamBuilder

  11. trait PathPart extends AnyRef

    captures URL parts

  12. case class PathPattern(parts: Seq[PathPart]) extends Product with Serializable

    Because of Positional, PathPattern cannot be replaced by play.core.PathPattern

  13. trait Processor extends AnyRef

    Processor processes a request then produces result as a future When it doesn't process, return None and sent to succeeding processors

  14. class ProxyProcessor extends Controller with Processor with Logging[ProxyProcessor]

    Processor to access to other servers.

  15. class RedirectFilter extends AfterFilter

    Set redirect status when redirect url is specified.

    Set redirect status when redirect url is specified. When normal statuses or not-found status returns and "redirect" path is specified, set SEE OTHER (303) with the specified url and the passed headers.

  16. trait Renderer extends AnyRef

    Renderer generates some Result, usually with template files When judging the request doesn't matter with it, return None.

  17. class StaticHtmlProcessor extends Controller with Processor

    Processor to return static HTML files

  18. case class StaticPart(value: String) extends PathPart with Product with Serializable

    Because of Positional, StaticPart cannot be replaced by play.core.StaticPart

  19. case class Stub(filters: Seq[StubFilter] = Seq.empty, routes: Seq[StubRouteConfig] = Seq.empty) extends Product with Serializable

  20. trait StubController extends Controller

  21. case class StubFilter(headers: Map[String, String] = Map.empty) extends Product with Serializable

  22. class StubPlugin extends Plugin

  23. case class StubRoute(conf: StubRouteConfig, params: RouteParams, path: String) extends Product with Serializable

  24. case class StubRouteConfig(route: Route, template: Option[Template] = None, proxy: Option[String] = None, redirect: Option[String] = None, data: Option[String] = None, status: Option[Int] = None, noResponse: Boolean = false, headers: Map[String, String] = Map.empty, params: Map[String, String] = Map.empty) extends Product with Serializable

  25. case class Template(path: String, engine: String) extends Product with Serializable

  26. class TemplateProcessor extends Results with Processor

    Process template rendering

    Process template rendering

    Currently, only string value is supported for extra parameters

  27. trait TemplateResolver extends AnyRef

Value Members

  1. object RoutesCompiler

    provides a compiler for routes

    provides a compiler for routes

    The source derives from https://github.com/playframework/playframework/tree/2.3.3/framework/src/routes-compiler/src/main/scala/play/router

  2. object Stub extends Serializable

  3. object StubController extends StubController

Ungrouped