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 17 package android.net; 18 19 import android.net.INetworkPolicyListener; 20 import android.net.Network; 21 import android.net.NetworkPolicy; 22 import android.net.NetworkTemplate; 23 import android.telephony.SubscriptionPlan; 24 25 /** 26 * Interface that creates and modifies network policy rules. 27 * 28 * {@hide} 29 */ 30 interface INetworkPolicyManager { 31 32 /** Control UID policies. */ 33 @UnsupportedAppUsage setUidPolicy(int uid, int policy)34 void setUidPolicy(int uid, int policy); addUidPolicy(int uid, int policy)35 void addUidPolicy(int uid, int policy); removeUidPolicy(int uid, int policy)36 void removeUidPolicy(int uid, int policy); 37 @UnsupportedAppUsage getUidPolicy(int uid)38 int getUidPolicy(int uid); getUidsWithPolicy(int policy)39 int[] getUidsWithPolicy(int policy); 40 registerListener(INetworkPolicyListener listener)41 void registerListener(INetworkPolicyListener listener); unregisterListener(INetworkPolicyListener listener)42 void unregisterListener(INetworkPolicyListener listener); 43 44 /** Control network policies atomically. */ 45 @UnsupportedAppUsage setNetworkPolicies(in NetworkPolicy[] policies)46 void setNetworkPolicies(in NetworkPolicy[] policies); getNetworkPolicies(String callingPackage)47 NetworkPolicy[] getNetworkPolicies(String callingPackage); 48 49 /** Snooze limit on policy matching given template. */ 50 @UnsupportedAppUsage snoozeLimit(in NetworkTemplate template)51 void snoozeLimit(in NetworkTemplate template); 52 53 /** Control if background data is restricted system-wide. */ 54 @UnsupportedAppUsage setRestrictBackground(boolean restrictBackground)55 void setRestrictBackground(boolean restrictBackground); 56 @UnsupportedAppUsage getRestrictBackground()57 boolean getRestrictBackground(); 58 59 /** Gets the restrict background status based on the caller's UID: 60 1 - disabled 61 2 - whitelisted 62 3 - enabled 63 */ getRestrictBackgroundByCaller()64 int getRestrictBackgroundByCaller(); getRestrictBackgroundStatus(int uid)65 int getRestrictBackgroundStatus(int uid); 66 setDeviceIdleMode(boolean enabled)67 void setDeviceIdleMode(boolean enabled); setWifiMeteredOverride(String networkId, int meteredOverride)68 void setWifiMeteredOverride(String networkId, int meteredOverride); 69 getMultipathPreference(in Network network)70 int getMultipathPreference(in Network network); 71 getSubscriptionPlans(int subId, String callingPackage)72 SubscriptionPlan[] getSubscriptionPlans(int subId, String callingPackage); setSubscriptionPlans(int subId, in SubscriptionPlan[] plans, String callingPackage)73 void setSubscriptionPlans(int subId, in SubscriptionPlan[] plans, String callingPackage); getSubscriptionPlansOwner(int subId)74 String getSubscriptionPlansOwner(int subId); setSubscriptionOverride(int subId, int overrideMask, int overrideValue, in int[] networkTypes, long timeoutMillis, String callingPackage)75 void setSubscriptionOverride(int subId, int overrideMask, int overrideValue, in int[] networkTypes, long timeoutMillis, String callingPackage); 76 factoryReset(String subscriber)77 void factoryReset(String subscriber); 78 isUidNetworkingBlocked(int uid, boolean meteredNetwork)79 boolean isUidNetworkingBlocked(int uid, boolean meteredNetwork); isUidRestrictedOnMeteredNetworks(int uid)80 boolean isUidRestrictedOnMeteredNetworks(int uid); 81 } 82