NetworkState.java revision d2a458750e5a3d490af09cecb5c28370baf0a913
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 LinkCapabilities linkCapabilities;
32
33    public NetworkState(NetworkInfo networkInfo, LinkProperties linkProperties,
34            LinkCapabilities linkCapabilities) {
35        this.networkInfo = networkInfo;
36        this.linkProperties = linkProperties;
37        this.linkCapabilities = linkCapabilities;
38    }
39
40    public NetworkState(Parcel in) {
41        networkInfo = in.readParcelable(null);
42        linkProperties = in.readParcelable(null);
43        linkCapabilities = in.readParcelable(null);
44    }
45
46    /** {@inheritDoc} */
47    public int describeContents() {
48        return 0;
49    }
50
51    /** {@inheritDoc} */
52    public void writeToParcel(Parcel out, int flags) {
53        out.writeParcelable(networkInfo, flags);
54        out.writeParcelable(linkProperties, flags);
55        out.writeParcelable(linkCapabilities, flags);
56    }
57
58    public static final Creator<NetworkState> CREATOR = new Creator<NetworkState>() {
59        public NetworkState createFromParcel(Parcel in) {
60            return new NetworkState(in);
61        }
62
63        public NetworkState[] newArray(int size) {
64            return new NetworkState[size];
65        }
66    };
67
68}
69