rapture.net

NetUrl

trait NetUrl extends Url[NetUrl] with Uri

Common methods for HttpUrls

Linear Supertypes
Url[NetUrl], Uri, AbsolutePath[NetUrl], Path[NetUrl], Link, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. NetUrl
  2. Url
  3. Uri
  4. AbsolutePath
  5. Path
  6. Link
  7. AnyRef
  8. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. trait Base64Padded extends CodecType

Abstract Value Members

  1. abstract def canonicalPort: Int

  2. abstract def hostname: String

  3. abstract def makePath(ascent: Int, elements: Seq[String], afterPath: AfterPath): NetUrl

    Definition Classes
    AbsolutePath → Path
  4. abstract val pathRoot: PathRoot[NetUrl]

    Definition Classes
    Url
  5. abstract def port: Int

  6. abstract def ssl: Boolean

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. def +[P <: Path[P]](dest: P): Path[_]

    Definition Classes
    Url → AbsolutePath
  5. def -[P <: AbsolutePath[P]](src: P)(implicit linkable: Linkable[P, NetUrl]): Result

    Definition Classes
    AbsolutePath
  6. def /(path: SimplePath): NetUrl

    Definition Classes
    Url
  7. def /(element: String): NetUrl

    Definition Classes
    Url → AbsolutePath → Path
  8. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  10. def absolute: Boolean

    Definition Classes
    AbsolutePath → Path → Link
  11. val afterPath: AfterPath

    Definition Classes
    Path
  12. def afterPathString: String

    Attributes
    protected
    Definition Classes
    Path
  13. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  14. val ascent: Int

    Definition Classes
    Path
  15. implicit val base64: ByteCodec[Base64Padded]

  16. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  17. def drop(n: Int): NetUrl

    Definition Classes
    AbsolutePath
  18. def dropRight(n: Int): NetUrl

    Definition Classes
    AbsolutePath
  19. val elements: Seq[String]

    Definition Classes
    Path
  20. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  21. def equals(any: Any): Boolean

    Definition Classes
    Url → Path → AnyRef → Any
  22. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  24. def hashCode(): Int

    Definition Classes
    Url → AnyRef → Any
  25. def head: String

    Definition Classes
    AbsolutePath
  26. def httpGet[T](headers: Map[String, String] = Map())(implicit mode: Mode[NetUrl#httpGet], httpTimeout: HttpTimeout, httpRedirectConfig: HttpRedirectConfig, httpCertificateConfig: HttpCertificateConfig, httpBasicAuthentication: HttpBasicAuthentication): Wrap[HttpResponse, HttpExceptions with Throws]

  27. def httpHead[T](headers: Map[String, String] = Map())(implicit mode: Mode[NetUrl#httpHead], httpTimeout: HttpTimeout, httpRedirectConfig: HttpRedirectConfig, httpCertificateConfig: HttpCertificateConfig, httpBasicAuthentication: HttpBasicAuthentication): Wrap[HttpResponse, HttpExceptions with Throws]

  28. def httpPost[C, T](content: C, headers: Map[String, String] = Map(), method: String = "POST")(implicit arg0: PostType[C], mode: Mode[NetUrl#httpPost], httpTimeout: HttpTimeout, httpRedirectConfig: HttpRedirectConfig, httpCertificateConfig: HttpCertificateConfig, httpBasicAuthentication: HttpBasicAuthentication): Wrap[HttpResponse, HttpExceptions with Throws]

    Sends an HTTP post to this URL.

    Sends an HTTP post to this URL.

    content

    the content to post to the URL

    returns

    the HTTP response from the remote host

  29. def httpPut[C, T](content: C, headers: Map[String, String] = Map())(implicit arg0: PostType[C], mode: Mode[NetUrl#httpPut], httpTimeout: HttpTimeout, httpRedirectConfig: HttpRedirectConfig, httpCertificateConfig: HttpCertificateConfig, httpBasicAuthentication: HttpBasicAuthentication): Wrap[HttpResponse, HttpExceptions with Throws]

    Sends an HTTP put to this URL.

    Sends an HTTP put to this URL.

    content

    the content to put to the URL

    returns

    the HTTP response from the remote host

  30. def init: NetUrl

    Definition Classes
    AbsolutePath
  31. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  32. def isRoot: Boolean

    Definition Classes
    AbsolutePath
  33. def last: String

    Definition Classes
    AbsolutePath
  34. def link[P <: AbsolutePath[P]](dest: P)(implicit linkable: Linkable[NetUrl, P]): Result

    Definition Classes
    AbsolutePath
  35. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  36. final def notify(): Unit

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

    Definition Classes
    AnyRef
  38. def parent: NetUrl

    Definition Classes
    AbsolutePath
  39. def pathString: String

    Definition Classes
    AbsolutePath
  40. def query[Q](q: Q)(implicit qt: QueryType[NetUrl, Q]): NetUrl

    Definition Classes
    Path
  41. def scheme: Scheme[NetUrl]

    Definition Classes
    Url → Uri
  42. def schemeName: String

    Definition Classes
    Url
  43. def schemeSpecificPart: String

    Definition Classes
    NetUrl → Uri
  44. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  45. def tail: NetUrl

    Definition Classes
    AbsolutePath
  46. def take(n: Int): NetUrl

    Definition Classes
    AbsolutePath
  47. def toString(): String

    Definition Classes
    Uri → AnyRef → Any
  48. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def /?[Q](q: Q)(implicit qt: QueryType[NetUrl, Q]): NetUrl

    Definition Classes
    Path
    Annotations
    @deprecated
    Deprecated

    (Since version 0.10.0) Use the query method instead.

Inherited from Url[NetUrl]

Inherited from Uri

Inherited from AbsolutePath[NetUrl]

Inherited from Path[NetUrl]

Inherited from Link

Inherited from AnyRef

Inherited from Any

Ungrouped