Merge "Add OWNED_BY field." am: 107141be5c

am: 9c7be233c3

Change-Id: Icf11a35867625a5a47450f5dc9a1b05ec00de502
This commit is contained in:
yuemingw
2017-11-08 19:45:14 +00:00
committed by android-build-merger

View File

@@ -2828,6 +2828,26 @@ public final class Telephony {
* @hide
*/
public static final int CARRIER_DELETED_BUT_PRESENT_IN_XML = 6;
/**
* The owner of the APN.
* <p>Type: INTEGER</p>
* @hide
*/
public static final String OWNED_BY = "owned_by";
/**
* Possible value for the OWNED_BY field.
* APN is owned by DPC.
* @hide
*/
public static final int OWNED_BY_DPC = 0;
/**
* Possible value for the OWNED_BY field.
* APN is owned by other sources.
* @hide
*/
public static final int OWNED_BY_OTHERS = 1;
}
/**