1/*
2 * Copyright (C) 2011 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
17package android.net;
18
19import android.os.Parcel;
20import android.os.Parcelable;
21
22/**
23 * Snapshot of network state.
24 *
25 * @hide
26 */
27public class NetworkState implements Parcelable {
28
29    public final NetworkInfo networkInfo;
30    public final LinkProperties linkProperties;
31    public final NetworkCapabilities networkCapabilities;
32    /** Currently only used by testing. */
33    public final String subscriberId;
34    public final String networkId;
35
36    public NetworkState(NetworkInfo networkInfo, LinkProperties linkProperties,
37            NetworkCapabilities networkCapabilities) {
38        this(networkInfo, linkProperties, networkCapabilities, null, null);
39    }
40
41    public NetworkState(NetworkInfo networkInfo, LinkProperties linkProperties,
42            NetworkCapabilities networkCapabilities, String subscriberId, String networkId) {
43        this.networkInfo = networkInfo;
44        this.linkProperties = linkProperties;
45        this.networkCapabilities = networkCapabilities;
46        this.subscriberId = subscriberId;
47        this.networkId = networkId;
48    }
49
50    public NetworkState(Parcel in) {
51        networkInfo = in.readParcelable(null);
52        linkProperties = in.readParcelable(null);
53        networkCapabilities = in.readParcelable(null);
54        subscriberId = in.readString();
55        networkId = in.readString();
56    }
57
58    @Override
59    public int describeContents() {
60        return 0;
61    }
62
63    @Override
64    public void writeToParcel(Parcel out, int flags) {
65        out.writeParcelable(networkInfo, flags);
66        out.writeParcelable(linkProperties, flags);
67        out.writeParcelable(networkCapabilities, flags);
68        out.writeString(subscriberId);
69        out.writeString(networkId);
70    }
71
72    public static final Creator<NetworkState> CREATOR = new Creator<NetworkState>() {
73        @Override
74        public NetworkState createFromParcel(Parcel in) {
75            return new NetworkState(in);
76        }
77
78        @Override
79        public NetworkState[] newArray(int size) {
80            return new NetworkState[size];
81        }
82    };
83
84}
85