* commit '1a087f0f01e4ea6900e5d922df68cbe908d6d1c9': Add external dependency API.
This commit is contained in:
@@ -690,4 +690,16 @@ public class ConnectivityManager
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param networkType The network who's dependence has changed
|
||||
* @param met Boolean - true if network use is ok, false if not
|
||||
* {@hide}
|
||||
*/
|
||||
public void setDataDependency(int networkType, boolean met) {
|
||||
try {
|
||||
mService.setDataDependency(networkType, met);
|
||||
} catch (RemoteException e) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -92,4 +92,6 @@ interface IConnectivityManager
|
||||
void setGlobalProxy(in ProxyProperties p);
|
||||
|
||||
ProxyProperties getProxy();
|
||||
|
||||
void setDataDependency(int networkType, boolean met);
|
||||
}
|
||||
|
||||
76
core/java/android/net/NetworkConfig.java
Normal file
76
core/java/android/net/NetworkConfig.java
Normal file
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* Copyright (C) 2010 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package android.net;
|
||||
|
||||
import android.util.Log;
|
||||
|
||||
/**
|
||||
* Describes the buildtime configuration of a network.
|
||||
* Holds settings read from resources.
|
||||
* @hide
|
||||
*/
|
||||
public class NetworkConfig {
|
||||
/**
|
||||
* Human readable string
|
||||
*/
|
||||
public String name;
|
||||
|
||||
/**
|
||||
* Type from ConnectivityManager
|
||||
*/
|
||||
public int type;
|
||||
|
||||
/**
|
||||
* the radio number from radio attributes config
|
||||
*/
|
||||
public int radio;
|
||||
|
||||
/**
|
||||
* higher number == higher priority when turning off connections
|
||||
*/
|
||||
public int priority;
|
||||
|
||||
/**
|
||||
* indicates the boot time dependencyMet setting
|
||||
*/
|
||||
public boolean dependencyMet;
|
||||
|
||||
/**
|
||||
* input string from config.xml resource. Uses the form:
|
||||
* [Connection name],[ConnectivityManager connection type],
|
||||
* [associated radio-type],[priority],[dependencyMet]
|
||||
*/
|
||||
public NetworkConfig(String init) {
|
||||
String fragments[] = init.split(",");
|
||||
name = fragments[0].trim().toLowerCase();
|
||||
type = Integer.parseInt(fragments[1]);
|
||||
radio = Integer.parseInt(fragments[2]);
|
||||
priority = Integer.parseInt(fragments[3]);
|
||||
if (fragments.length > 4) {
|
||||
dependencyMet = Boolean.parseBoolean(fragments[4]);
|
||||
} else {
|
||||
dependencyMet = true;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Indicates if this network is supposed to be default-routable
|
||||
*/
|
||||
public boolean isDefault() {
|
||||
return (type == radio);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user