FileAndResourceDirectives

pl.iterators.stir.server.directives.FileAndResourceDirectives
See theFileAndResourceDirectives companion object

Attributes

Companion
object
Source
FileAndResourceDirectives.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Members list

Value members

Concrete methods

def getFromDirectory(directoryName: String): Route

Completes GET requests with the content of a file underneath the given directory. If the file cannot be read the Route rejects the request.

Completes GET requests with the content of a file underneath the given directory. If the file cannot be read the Route rejects the request.

Attributes

Source
FileAndResourceDirectives.scala
def getFromFile(fileName: String): Route

Completes GET requests with the content of the given file. If the file cannot be found or read the request is rejected.

Completes GET requests with the content of the given file. If the file cannot be found or read the request is rejected.

Attributes

Source
FileAndResourceDirectives.scala
def getFromFile(file: File): Route

Completes GET requests with the content of the given file. If the file cannot be found or read the request is rejected.

Completes GET requests with the content of the given file. If the file cannot be found or read the request is rejected.

Attributes

Source
FileAndResourceDirectives.scala
def getFromResource(resourceName: String): Route

Completes GET requests with the content of the given class-path resource. If the resource cannot be found or read the Route rejects the request.

Completes GET requests with the content of the given class-path resource. If the resource cannot be found or read the Route rejects the request.

Attributes

Source
FileAndResourceDirectives.scala
def getFromResourceDirectory(directoryName: String): Route

Same as "getFromDirectory" except that the file is not fetched from the file system but rather from a "resource directory". If the requested resource is itself a directory or cannot be found or read the Route rejects the request.

Same as "getFromDirectory" except that the file is not fetched from the file system but rather from a "resource directory". If the requested resource is itself a directory or cannot be found or read the Route rejects the request.

Attributes

Source
FileAndResourceDirectives.scala