• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2019 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License
15  */
16 
17 package com.android.server.net.integrationtests
18 
19 import android.os.Parcel
20 import android.os.Parcelable
21 
22 data class HttpResponse(
23     val requestUrl: String,
24     val responseCode: Int,
25     val content: String = "",
26     val redirectUrl: String? = null
27 ) : Parcelable {
28     constructor(p: Parcel): this(p.readString(), p.readInt(), p.readString(), p.readString())
29     constructor(requestUrl: String, contentBody: String): this(
30             requestUrl,
31             responseCode = 200,
32             content = contentBody,
33             redirectUrl = null)
34 
writeToParcelnull35     override fun writeToParcel(dest: Parcel, flags: Int) {
36         with(dest) {
37             writeString(requestUrl)
38             writeInt(responseCode)
39             writeString(content)
40             writeString(redirectUrl)
41         }
42     }
43 
describeContentsnull44     override fun describeContents() = 0
45     companion object CREATOR : Parcelable.Creator<HttpResponse> {
46         override fun createFromParcel(source: Parcel) = HttpResponse(source)
47         override fun newArray(size: Int) = arrayOfNulls<HttpResponse?>(size)
48     }
49 }