case class GitRepositoryRouting(urlPattern: String, localPath: String, filter: GitRepositoryFilter) extends Product with Serializable
Define the Git repository routing.
- urlPattern
the regular expression which matches the repository path (e.g. "gist/(.+?)/(.+?)\\.git")
- localPath
the string to assemble local file path of repository (e.g. "gist/$1/$2")
- filter
the filter for request to the Git repository which is defined by this routing
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- GitRepositoryRouting
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new GitRepositoryRouting(urlPattern: String, localPath: String)
- new GitRepositoryRouting(urlPattern: String, localPath: String, filter: GitRepositoryFilter)
- urlPattern
the regular expression which matches the repository path (e.g. "gist/(.+?)/(.+?)\\.git")
- localPath
the string to assemble local file path of repository (e.g. "gist/$1/$2")
- filter
the filter for request to the Git repository which is defined by this routing
Value Members
- val filter: GitRepositoryFilter
- val localPath: String
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val urlPattern: String