IConnectivityManager.aidl revision d24b8183b93e781080b2c16c487e60d51c12da31
1/**
2 * Copyright (c) 2008, 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.net.NetworkInfo;
20
21/**
22 * Interface that answers queries about, and allows changing, the
23 * state of network connectivity.
24 */
25/** {@hide} */
26interface IConnectivityManager
27{
28    void setNetworkPreference(int pref);
29
30    int getNetworkPreference();
31
32    NetworkInfo getActiveNetworkInfo();
33
34    NetworkInfo getNetworkInfo(int networkType);
35
36    NetworkInfo[] getAllNetworkInfo();
37
38    boolean setRadios(boolean onOff);
39
40    boolean setRadio(int networkType, boolean turnOn);
41
42    int startUsingNetworkFeature(int networkType, in String feature);
43
44    int stopUsingNetworkFeature(int networkType, in String feature);
45
46    boolean requestRouteToHost(int networkType, int hostAddress);
47
48    boolean getBackgroundDataSetting();
49
50    void setBackgroundDataSetting(boolean allowBackgroundData);
51}
52